I want to remove the password for user root in localhost. How can I do that? By mistake I have set the password of root user. That's why phpmyadmin is giving an error:

#1045 - Access denied for user 'root'@'localhost' (using password: NO)

link|improve this question

72% accept rate
3  
Why not configure your phpMyAdmin to use the root password instead? – Simon Svensson Jun 13 '10 at 11:27
feedback

2 Answers

up vote 16 down vote accepted

You have to set a blank password using:

SET PASSWORD [FOR user] =
{
    PASSWORD('some password')
  | OLD_PASSWORD('some password')
  | 'encrypted password'
}

In this case I think you have to do something like:

SET PASSWORD FOR root@localhost=PASSWORD('');
link|improve this answer
how can I reset password for a perticular database? – nectar Jun 13 '10 at 13:18
feedback

The MySQL documentation contains instructions on how to reset the root password in case you have forgotten it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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