首页 > 技术文章 > mysql出现:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 错误

csdndreamer 2016-01-03 13:44 原文

初次安装mysql,net  start mysql,然后输入mysql -u root -p,出现enter password,我直接点击回车,结果出现如果下错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)。
解决方法:
# /etc/init.d/mysqld 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/mysqld restart 
# mysql -uroot -p 
Enter password: <输入新设的密码newpassword>

推荐阅读