MySQL 5.7 数据库的忘记 root 登录密码处理

Posted

tags:

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

在 /etc/my.cnf 配置文件中添加 skip-grant-tables 绕开 mysql 5.7 数据库密码验证
echo skip-grant-tables >> /etc/my.cnf

/etc/init.d/mysqld restart

直接使用 mysql 命令登录 MySQL5.7 数据库并修改 root 登录密码
mysql
mysql> ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘password‘;
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘password‘;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye

使用新密码 password 登录 MySQL5.7 数据库
mysql -uroot -ppassword

删掉 /etc/my.cnf 里的 skip-grant-tables
sed -i -e ‘/skip-grant-tables/d‘ /etc/my.cnf
/etc/init.d/mysqld restart

以上是关于MySQL 5.7 数据库的忘记 root 登录密码处理的主要内容,如果未能解决你的问题,请参考以下文章

mySql-5.7,root用户忘记密码处理方式

linux系统mysql忘记root密码怎么登录

Mysql 5.7 远程连接出错

Mysql 5.7 liunx 忘记密码的补救方法

mysql 5.7 忘记root密码解决方法

Ubuntu为mysql的root用户密码问题