centos设置mysql root密码

前端之家收集整理的这篇文章主要介绍了centos设置mysql root密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. service MysqLd stop

2. vi /etc/my.cnf

3.在[MysqLd]片段中开始新增skip-grant-tables,保存退出vi

4.service MysqLd start

5.MysqL -u root MysqL,进入MysqL

6.MysqL>use MysqL;

7.MysqL>update user set password=PASSWORD(’111111’) where user=’root’;

如果找不到password字段,是因为MysqL5.7版本password字段改成了authentication_string,用以下语句即可

MysqL>update user set authentication_string=password('111111') where user='root' ;

7.MysqL>flush privileges;

8.MysqL>quit;

9.vi /etc/my.cnf,删除skip-grant-tables,保存退出vi

10.service MysqLd start

11.MysqL -u root -p,此时输入密码即可。

原文链接:https://www.f2er.com/centos/378863.html

猜你在找的CentOS相关文章