在Linux环境中的Mysql忘记root密码的恢复方法

有些版本的MySQL安装完成后root用户的默认密码不一样,有的是空密码,有的是root,还有的是password ,如果都不是,可以使用下面的方法强制修改。具体如下:

1、首先修改MySQL配置文件为跳过密码验证登录。

1
[root@localhost my.cnf.d]# vim /etc/my.cnf

在文件最末尾加上 skip-grant–tables 然后保存配置文件。

2、接下来重启MySQL服务

1
2
[root@localhost my.cnf.d]# service mysqld restart
Redirecting to /bin/systemctl restart mysqld.service

3、登录MySQL(期间有时还是会要求输入密码,随便输入即可)

1
[root@localhost ~]# mysql -u root -p

4、修改MySQL密码:选择mysql数据库;(以修改密码为root为例)

1
2
3
4
5
mysql> use mysql
Database changed
mysql> update user set password=password('root')where user=('root');
Query OK, 5 rows affected (0.01 sec)
Rows matched: 5 Changed: 5 Warnings: 0

5、将刚才修改的MySQL配置还原

在 /etc/my.cnf 配置文件中删除刚才加上的 skip-grant-tables 最后保存,重启MySQL服务即可。


在Linux环境中的Mysql忘记root密码的恢复方法
http://anximin.github.io/2023/12/15/Linux_mysql_forgetpwd/
作者
Sylar
发布于
2023年12月15日
许可协议