没有最好的语言,只有最适合的语言。
分类: Mysql/postgreSQL
2013-07-11 18:52:27
今天想进入mysql的时候输入密码的时候提示Access denied for user 'root'@'localhost' (using password: YES)但发现密码是对的,就是一直进不了,在网上找到了这个方法,试了一下,问题解决了
方法如下:# /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>