Mysql 忘记 root 密码解决方法

2021/11/5 19:10:58

本文主要是介绍Mysql 忘记 root 密码解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Mysql 版本:5.7.17

Linux 版本:Centos 7.8


1. 修改配置文件 vi /etc/my.cnf,添加 skip-grant-tables

[mysqld]
skip-grant-tables

2. 重启 mysql

systemctl restart mysql

3. 使用 root 登录 (密码为空),并修改密码

use mysql;
update mysql.user set authentication_string=password('password') where user='root';
flush privileges;

4. 修改配置文件 vi /etc/my.cnf,移除 skip-grant-tables

5. 重启 mysql

systemctl restart mysql

6. 使用新密码登录



这篇关于Mysql 忘记 root 密码解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程