欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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';