Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to setup up mysql on mac os 10.6 using Homebrew by brew install mysql 5.1.52

everything goes well and I am also successful with the mysql_install_db.
However when i try to connect to the server using:

/usr/local/Cellar/mysql/5.1.52/bin/mysqladmin -u root password 'mypass'

I get:

/usr/local/Cellar/mysql/5.1.52/bin/mysqladmin: connect to server at 'localhost' 
failed error: 'Access denied for user 'root'@'localhost' (using password: NO)'

I've tried to access mysqladmin or mysql using -u root -proot as well,
but it doesn't work with or without password.

This is a brand new installation on a brand new machine and as far as I know the new installation must be accessible without a root password. I also tried:

/usr/local/Cellar/mysql/5.1.52/bin/mysql_secure_installation

but I also get

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
share|improve this question
running into exactly same issue. I have a brand new macbook pro and now running into this problem. – Nick Vanderbilt Dec 31 '10 at 3:15

6 Answers

up vote 172 down vote accepted

I think one can end up in this position with older versions of mysql already installed. I had the same problem and none of the above solutions worked for me. I fixed it thus:

Used brew's remove & cleanup commands, unloaded the launchctl script, then deleted the mysql directory in /usr/local/var, deleted my existing /etc/my.cnf (leave that one up to you, should it apply) and launchctl plist

Updated the string for the plist. Note also your alternate security script directory will be based on which version of MySQL you are installing.

Step-by-step:

brew remove mysql

brew cleanup

launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

rm ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

sudo rm -rf /usr/local/var/mysql

I then started from scratch:

  1. installed mysql with brew install mysql
  2. ran the commands brew suggested:

    unset TMPDIR
    
    mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp
    
  3. Start mysql with mysql.server start command, to be able to log on it

  4. Used the alternate security script:

    /usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation
    
  5. Followed the launchctl section from the brew package script output

  6. Boom.

Hope that helps someone!

share|improve this answer
1  
Thanks, worked like charm! – ream88 Sep 29 '11 at 9:12
Thank you for your detailed instruction! Installing mysql in mac all night long had almost killed me. – CMinus Dec 10 '11 at 17:13
4  
Great answer, thanks! One thing to add: Though it is mentioned in the answer, I missed it and in so doing lost about 6 hours trying to get set up on Lion OSX. Make absolutely sure that you delete the old mysql directory at /usr/local/var/mysql if you have a previous version of MySql before you reinstall. Otherwise you will not be able to log in as root initially to set the password and you will spend a lot of time yelling at your computer. – tronbabylove Apr 15 '12 at 15:01
3  
go into ~/Library/LaunchAgents to see what the .plist file for mysql is actually called - in my case it was installed by homebrew so you need to modify the above uninstall procedure. – Marco Jul 18 '12 at 15:35
1  
Because this thread is old, the "launchctl unload" line above is now wrong. The file homebrew installs is not longer called "com.mysql.mysqld.plist", it is called "homebrew.mxcl.mysql.plist". The line should now read "launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist" – Tommy Feb 14 at 4:13
show 2 more comments

Had the same problem. Seems like there is something wrong with the set up instructions or the initial tables that are being created. This is how I got mysqld running on my machine.

If the mysqld server is already running on your Mac, stop it first with:

launchctl unload -w ~/Library/LaunchAgents/com.mysql.mysqld.plist

Start the mysqld server with the following command which lets anyone log in with full permissions.

mysqld_safe --skip-grant-tables

Then run mysql -u root which should now let you log in successfully without a password. The following command should reset all the root passwords.

UPDATE mysql.user SET Password=PASSWORD('NewPassword') WHERE User='root'; FLUSH PRIVILEGES;

Now if you kill the running copy of mysqld_safe and start it up again without the skip-grant-tables option, you should be able to log in with mysql -u root -p and the new password you just set.

share|improve this answer
This worked for me! I started guessing the password before I tried this too and the password ended up being 'password'. So try that. – cointilt May 12 '11 at 22:42
Launching mysqld_safe without the grant tables worked for me. However, the UPDATE did not work since I do not have any records on select * from mysql.user; Since we are already logged in as root, we can simply insert one for root by running GRANT ALL PRIVILEGES ON . TO 'root'@'localhost' IDENTIFIED BY 'whatever'; FLUSH PRIVILEGES; – Rupert Nov 14 '11 at 1:18

I had the same problem just now. If you brew info mysql and follow the steps it looks like the root password should be new-password if I remember correctly. I was seeing the same thing you are seeing. This article helped me the most.

It turned out I didn't have any accounts created for me. When I logged in after running mysqld_safe and did select * from user; no rows were returned. I opened the MySQLWorkbench with the mysqld_safe running and added a root account with all the privs I expected. This are working well for me now.

share|improve this answer

Okay I had the same issue and solved it. For some reason the mysql_secure_installation script doesn't work out of the box when using Homebrew to install mysql, so I did it manually. On the CLI enter:

mysql -u root

That should get you into mysql. Now do the following (taken from mysql_secure_installation):

UPDATE mysql.user SET Password=PASSWORD('your_new_pass') WHERE User='root';
DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');
DELETE FROM mysql.user WHERE User='';
DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%'
DROP DATABASE test;
FLUSH PRIVILEGES;

Now exit and get back into mysql with: mysql -u root -p

share|improve this answer
This solution is not working for me because mysql -u root is not taking me to mysql prompt. It says Access denied for user 'root'@'localhost' (using password: NO) – Nick Vanderbilt Dec 31 '10 at 3:12
Did you have a previous install of MySQL on that machine? – Darren Newton Dec 31 '10 at 17:56

It's an issue with Lion currently. This should work for ya

brew install https://raw.github.com/adamv/homebrew-alt/master/versions/mysql51.rb

share|improve this answer
Hopefully this helps others who use this: I had to change basedir argument on the second command brew info mysql tells me to run (mysql_install_db) to --basedir=/usr/local/Cellar/mysql51/5.1.58 to get this to work. – fourk Sep 29 '11 at 21:02
3  
link no longer functions – Nathan Feger Apr 19 '12 at 19:32

Try by giving Grant permission Command of mysql

share|improve this answer
the problem is that i can't access the mysql server at all after the installation by brew. I can start it, but it won't let me in as root with or without password. (therefore i can't create other users or manage permissions.. or have I not understood you right? – nikola Dec 5 '10 at 20:58

protected by Community Aug 2 '11 at 22:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.