MySQL忘记root密码
程序员文章站
2022-06-26 09:54:51
1 修改配置文件 vim /etc/my.cnf [mysqld] skip-grant-tables #添加此条配置,用来跳过授权表 2 重启数据库 systemctl restart mysqld 3 设置新密码 mysql5.6 update user set password=PASSWOR ......
1 修改配置文件
vim /etc/my.cnf
[mysqld]
skip-grant-tables #添加此条配置,用来跳过授权表
2 重启数据库
systemctl restart mysqld
3 设置新密码
mysql5.6
update user set password=password('新密码') where user='root';
mysql5.7
update user set authentication_string = password('新密码'), password_expired = 'n', password_last_chang_changed = now() where user = 'root';
上一篇: 人参饮食禁忌 八种人不适合吃人参