I forgot my root password in MySQL 5.1 on Windows 7 I uninstalled and deleted the MySQL directory in Program Files

Then I installed 5.5, but get error 1045, saying: Access denied for user: 'root@localhost'

I thought that uninstalling MySQL, and reinstalling would allow me to create a new root password, but apparently not. Please help!

link|improve this question
I have already tried the solution provided at the following url with no success: dev.mysql.com/doc/refman/5.0/en/… – Tim May 20 '11 at 5:18
feedback

2 Answers

There's a guide on mysql.com called Resetting the Root Password: Windows Systems.

link|improve this answer
Thanks, but I already tried that. When I entered the command line in step 6, it just hung... – Tim May 20 '11 at 5:16
@Tim: allright, tough luck :( Did you try the "generic instructions" too? – chelmertz May 20 '11 at 5:20
Actually, I have not, but they're not too clear to me. I'm new to MySQL – Tim May 20 '11 at 5:22
I just typed the following into command prompt, and it hung: – Tim May 20 '11 at 5:23
"C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld" --skip-grant-tables – Tim May 20 '11 at 5:24
show 10 more comments
feedback

It's easy to use the init-file option to mysqld

Add either

GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFied BY 'blah' WIth GRANT OPTION;

Or preferably

SET PASSWORD FOR root@localhost = PASSWORD('blah');

to a file say /reset.mysqld

Edit your /etc/my.cnf to point to this file

[mysqld]
....
init-file=/reset.mysqld
...

Restart mysqld, remove /reset.mysqld and revert your my.cnf to what it was before.

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.