美文网首页
mysql重置root密码

mysql重置root密码

作者: crMiao | 来源:发表于2020-04-22 17:27 被阅读0次

1、编辑MySQL配置文件my.cnf

vi /etc/my.cnf #编辑文件,找到[mysqld],在下面添加一行skip-grant-tables
[mysqld]
skip-grant-tables
:wq! #保存退出
service mysqld restart #重启MySQL服务

2、进入MySQL控制台

./mysql -uroot -p #直接按回车,这时不需要输入root密码。

3、修改root密码

update mysql.user set authentication_string=password('Bj123%^') where User="root" and Host="localhost”; Insert into USER (User,Host, authentication_string)values ('server','%',password('Bj123%^’));
update mysql.user set Host=“%" where User="root";
flush privileges; #刷新系统授权表
grant all on . to 'root'@'localhost' identified by '123456' with grant option;
GRANT ALL ON . TO 'server'@'%' IDENTIFIED BY ‘Bj123$%^' WITH GRANT OPTION;

4、取消/etc/my.cnf中的skip-grant-tables

vi /etc/my.cnf 编辑文件,找到[mysqld],删除skip-grant-tables这一行
:wq! #保存退出

5、重启mysql

service mysqld restart #重启mysql,这个时候mysql的root密码已经修改为123456

6、进入mysql控制台

./mysql -uroot -p #进入mysql控制台
123456 #输入密码

相关文章

网友评论

      本文标题:mysql重置root密码

      本文链接:https://www.haomeiwen.com/subject/zndwihtx.html