CentOS7下mysql忘记root密码的处理方法

Posted 凯kyne

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7下mysql忘记root密码的处理方法相关的知识,希望对你有一定的参考价值。

1.  vi /etc/my.cnf,在[mysqld]中添加

skip-grant-tables

例如:

[mysqld]
skip-grant-tables
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock

2.  重启mysql

service mysql restart

3.  使用用户无密码登录

mysql -uroot -p (直接点击回车,密码为空)

4. 选择数据库

use mysql;

5. 修改root密码

update user set authentication_string=password(‘123456‘) where user=‘root‘;

6 .刷新权限

 flush privileges;

7 .退出

exit;

8 .删除第1部增加的配置信息

skip-grant-tables

9 .重启mysql

service mysql restart

 

参考地址:https://blog.csdn.net/huanghaifei922/article/details/54644818

 









以上是关于CentOS7下mysql忘记root密码的处理方法的主要内容,如果未能解决你的问题,请参考以下文章

centos7下mariadb 忘记密码处理方法

Centos7下mariadb忘记root密码处理

Centos7系统中Mysql登录忘记root密码

Centos7系统中Mysql登录忘记root密码

centos7下,忘记mysql2.5.版本的登录密码,如何重置及登陆

Centos7 之 MariaDB(Mysql) root密码忘记的解决办法