Mysql5.7.21 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 解决

登陆mysql

mysql -u root -p

出现错误,提示 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

密码错误。

我忘记密码了。下面就是如何重置密码

  •  关闭mysql
service mysqld stop
  • 修改my.cnf配置文件

打开mysql配置文件, 一般是/etc/my.cnf文件,在文件末尾添加 skip-grant-tables

现在就可以无密码登陆mysql了

  • 登陆mysql并重置密码
service mysqld start
mysql -u root
# 重置密码
mysql> update mysql.user set authentication_string=password('000000') where user='root'
  • 修改配置文件并重启mysql

打开配置文件my.cnf并将刚才添加的skip-grant-tables注释掉,并重启mysql,就可以用刚才设置的密码登陆了

service mysqld restart

 

你可能感兴趣的:(mysql,数据库&SQL)