解决mysql“Access denied for user 'root'@'localhost'”

昨天在redhat 装了mysql-5.1.50-linux-i686-icc-glibc23.tar.gz,完成后,产看端口3306已经监听,但是连接mysql库时,总是有错误提示:
# mysql -uroot -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
在网上找到了如下的解决方法:

# /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>

虽然可以设置root用户的密码,但是我重启mysql后,还是未能进入mysql,Access denied for user 'root'@'localhost' 的提示依旧。最后实在无奈了,我换了mysql的版本。上述方法,留着或许以后忘了密码可以用到。
 

 

转自:http://blog.chinaunix.net/u1/35320/showart_305024.html

你可能感兴趣的:(mysql,数据库,mysql,职场,1045,denied,休闲)