ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: N O)

I've tried EVERYTHING, I've read through pages of answers and no-one seems to know the right one.

When i try to log into my DB i just get the above error, I havent set a password or anything.

Can't log into MySQL at all now, don't understand.

Thanks for your help in advance

link|improve this question

71% accept rate
1  
It would be helpful if you could explain how you're trying to log into the database. Are you trying to log into the command line client or access it from a program? Also, what command/code are you using to do this? – chrisbunney May 26 '10 at 12:12
Hi Chris, I'm using mysql -u root -p When it prompts for the password I'm just pressing enter It worked fine, then just stopped working fine. – WANNABE May 26 '10 at 12:15
Since you've not set a root password, have you tried <code>mysql -u root</code>? Although why mysql would complain about the redundant -p option I don't know... – chrisbunney May 26 '10 at 12:28
feedback

2 Answers

up vote 3 down vote accepted

use the -p option. (Tells mysql that you want to provide a password when logging in.)

$ mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
$ mysql -u root -p
Enter password: 

If that doesn't work, try B.5.4.1. How to Reset the Root Password from the MySQL Reference Manual.

link|improve this answer
Thanks mate, I'm using: mysql -u root -p No password set - just pressing enter but still not working. – WANNABE May 26 '10 at 12:16
2  
Try netadmintools.com/art90.html (including the section starting with "To reset a root password that you forgot") or dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html – aioobe May 26 '10 at 12:24
dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html worked perfectly for me. Thanks alot mate. – WANNABE May 26 '10 at 12:56
aioobe, incorporate the comment into your answer so I can upvote it :) – chrisbunney May 26 '10 at 18:24
@chrisbunney, sure, that's actually a good idea. I will remember it for future comments too. – aioobe May 27 '10 at 5:42
feedback
$ mysql -u root -p{you_password} {db_name}

just remove '{}' from the string.

link|improve this answer
1  
Not recommended as the password will be stored in clear text in the bash-history file. – aioobe May 26 '10 at 12:22
1  
@aioobe Yes, but on testing/debug period it's the easiest one... In my opinion, the best way, is to create my.cnf in the users dir, with password field inside... But, it's not a noob way as you can see :) – mosg May 26 '10 at 12:26
feedback

Your Answer

 
or
required, but never shown

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