I reinstalled mysql on my machine, and before that, deleted all the files. However, after the reinstallation, i tried running mysql, and got this error

mysql -u root

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

I did not set any password, and in fact, running mysqladmin gives the same error as well

This is totally baffling - any idea why this might be happening?

link|improve this question
feedback

closed as off topic by Marc Gravell Sep 24 '09 at 11:07

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

try this:

mysql -u root -p

and hit enter when it asks for the password. Does that let you in?

link|improve this answer
feedback

Did you run

mysqladmin -u root password "NEW-PASSWORD"

?

link|improve this answer
feedback

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