I have a little problem with my phpmyadmin, in fact I accidentally delete multiple user accounts. Since it is impossible to connect without the error:

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

I have search a little on the net before, and even the technic:

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

does not work, or I didn't understood how it worked.

I'm on FreeBSD 8.1, my version of PhpMyadmin is 2.11.

Thank you in advance for your answers.

link|improve this question
feedback

2 Answers

I summarised my solution here: http://snippets.dzone.com/posts/show/13267

sudo stop mysql
sudo mysqld --skip-grant-tables --skip-networking

mysql
mysql> update mysql.user set password = password('your_new_password') where user = 'root';
mysql> flush privileges;
mysql> exit;
sudo mysqladmin shutdown
sudo start mysql
link|improve this answer
1  
please don't post the exact same answer multiple times. If the question is a duplicate, flag it as such. – Mat Jun 19 '11 at 12:02
feedback

http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html

link|improve this answer
I already use this solution but this doesn't work. Any other ideas ? – 4m0ni4c Nov 23 '10 at 16:31
That page has several different options depending on OS, along with a generic solution. Which one(s) did you try, and did you follow the instructions exactly? – Jim Garrison Nov 23 '10 at 19:36
feedback

Your Answer

 
or
required, but never shown

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