Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to set a password with the following command in terminal on mac osx:

/usr/local/mysql/bin/mysqladmin -u root password fakepassword

Getting the following error:

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

Whats the deal? Also is there a command that I can use in terminal to update mysql to the most recent version?

share|improve this question
Try this: /usr/local/mysql/bin/mysqladmin -u root -p password fakepassword, this way the system will ask you for a password. – jap1968 Dec 21 '12 at 6:41
Probably more appropriate for serverfault, especially the question about updates (which should be asked as a separate question entirely, IMO). – Wiseguy Dec 21 '12 at 6:45

closed as off topic by Wiseguy, Somnath Muluk, Barmar, evilone, kmp Dec 21 '12 at 7:25

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

If you want to update your password, use this command:

$ mysqladmin -uroot -p'oldpassword' password [newpass]
share|improve this answer

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