centos7下 mysql5.7 忘记密码重置

时间:2024-03-27 19:51:40

MySQL 5.7 开始 数据库中的user 表中已经将password 字段更改为authentication_string  所以更改密码 直接使用 update mysql.user set authentication_string=password("123456") where user="root";

完整的修改数据库密码的操作

1. vim /etc/my.cnf 加入skip-grant-tables

centos7下 mysql5.7 忘记密码重置

2.重启mysql  systemctl restart mysqld

3.终端输入mysql  直接登录到数据库  use mysql ;

4.update mysql.user set authentication_string=password("123456") where user="root";

5.编辑my.cnf文件删掉skip-grant-tables 这一行,然后重启MySQL,/etc/init.d/mysqld restart,否则MySQL仍能免密码登录

6.mysql -uroot -p

centos7下 mysql5.7 忘记密码重置

接下来MySQL就可以正常运行了。