1. No user installed addons are supported, python or otherwise.
2. No, they really are not supported.
3. They are not coming back
4. Read from 1. again
Any mention of illegal streaming sites, addons or any pirated material will not be tolerated. This is not democracy and any offenders will be banned and posts deleted immediately without warning.
Other than that, we hope you enjoy MrMC so far and we welcome any input and feedback you might have.
Team MrMC.
2. No, they really are not supported.
3. They are not coming back
4. Read from 1. again
Any mention of illegal streaming sites, addons or any pirated material will not be tolerated. This is not democracy and any offenders will be banned and posts deleted immediately without warning.
Other than that, we hope you enjoy MrMC so far and we welcome any input and feedback you might have.
Team MrMC.
mySQL error 1045
-
jabohn
- Posts: 449
- Joined: 20 Nov 2015, 18:53
mySQL error 1045
I've installed mySQL on my iMac and I'm using the instructions to set it up for MrMC. I'm in the terminal and I can't even get past the first command:
sudo /usr/local/mysql/bin/mysql
I enter my password and I get this:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Any ideas?
I assume the requested password is my computer account's password.
sudo /usr/local/mysql/bin/mysql
I enter my password and I get this:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Any ideas?
I assume the requested password is my computer account's password.
- timstephens24
- Posts: 894
- Joined: 09 Dec 2015, 22:43
Re: mySQL error 1045
Try just doing:
Code: Select all
mysql -u root -p-
jabohn
- Posts: 449
- Joined: 20 Nov 2015, 18:53
Re: mySQL error 1045
Thanks. I got further but now there's another error:
sudo cp my-huge.cnf /etc/my.cnf
cp: my-huge.cnf: No such file or directory
sudo cp my-huge.cnf /etc/my.cnf
cp: my-huge.cnf: No such file or directory
- amet
- Team MrMC
- Posts: 3787
- Joined: 26 Oct 2015, 16:59
- Location: Dubai/Novi Sad
Re: mySQL error 1045
ls /usr/local/mysql/support-files/
What does ^^^ give you?
Also, pastebin the entire terminal output when you get an error to give us a chance to try to help you... one liners don’t have enough info
What does ^^^ give you?
Also, pastebin the entire terminal output when you get an error to give us a chance to try to help you... one liners don’t have enough info
- timstephens24
- Posts: 894
- Joined: 09 Dec 2015, 22:43
Re: mySQL error 1045
MySQL on the Mac doesn't use a my.cnf file by default, so it's not downloaded in the support-files folder. You can't copy a file that doesn't exist is basically what the error is telling you :p
It should be listening on 3306 and 33060 on all interfaces I believe. What's the output of this command:
It should be listening on 3306 and 33060 on all interfaces I believe. What's the output of this command:
Code: Select all
sudo lsof -n -P -i4TCP | egrep "3306"-
jabohn
- Posts: 449
- Joined: 20 Nov 2015, 18:53
Re: mySQL error 1045
Here you go... (side note: I guess the Mac instructions on the wiki aren't exactly correct)
Code: Select all
Last login: Fri Jul 20 08:54:53 on ttys000
jMac:~ jabohn$ sudo lsof -n -P -i4TCP | egrep "3306"
Password:
mysqld 82959 _mysql 19u IPv6 0x13e9f6212ff1a6b3 0t0 TCP *:3306 (LISTEN)
mysqld 82959 _mysql 22u IPv6 0x13e9f6212ff1a0f3 0t0 TCP *:33060 (LISTEN)
jMac:~ jabohn$ - timstephens24
- Posts: 894
- Joined: 09 Dec 2015, 22:43
-
jabohn
- Posts: 449
- Joined: 20 Nov 2015, 18:53
Re: mySQL error 1045
Okay, well I gave it a shot but the guide doesn't even say what to do on MrMC. I put in my computer's IP for the address and put in the password I created when installing mySQL but at no point did mySQL prompt me to create a username so I just put root. Anyway, it didn't work and MrMC said to check my settings.
- timstephens24
- Posts: 894
- Joined: 09 Dec 2015, 22:43
Re: mySQL error 1045
You need to run these commands:
What that will do is log in to your MySQL database as root, create a user named mrmc with a password of mrmc and then exit.
In MrMC set the user name to mrmc and the password to mrmc and put in the IP of your Mac. Leave the port and the names of the databases at the default value and then try to enable it.
Code: Select all
/usr/local/mysql/bin/mysql -u root -p
<Insert MySQL root password>
CREATE USER 'mrmc' IDENTIFIED BY 'mrmc';
GRANT ALL ON *.* TO 'mrmc';
exit
In MrMC set the user name to mrmc and the password to mrmc and put in the IP of your Mac. Leave the port and the names of the databases at the default value and then try to enable it.