Please help me how to install MySQL on Windows 7. When I tried to install, I am getting errors as:

The security settings could not be applied to the database because the connection has failed of the following errors

ERROR NR:1045 Access denied for user 'root@'localhost(using password yes).

I tried to uninstall MySQL completely and install again, but it shows this error again and again. I have changed my firewall setting also and tried unstalling antivirus sotware too. But it also did not work.

link|improve this question
what is your root password? does it even have a password? – Yasser Souri Jun 20 '11 at 5:37
Think he has just installed and doesnt know where to change – Balanivash Jun 20 '11 at 5:38
feedback

migrated from stackoverflow.com Jun 20 '11 at 8:14

This question came from our site for professional and enthusiast programmers.

2 Answers

Was the provided password correct?

Otherwise please check here: http://forums.mysql.com/read.php?11,39440,417422#msg-417422

link|improve this answer
feedback
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit

# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <newpassword>
link|improve this answer
Your answer is for a linux system and in the question it has been specifically stated that the problem is in wondows – Balanivash Jun 20 '11 at 5:59
feedback

Your Answer

 
or
required, but never shown