目录

Linux忘记mysql密码解决办法

1、前景

1
2
3
4
5
mysql初始密码忘记

mysql密码忘记

mysql重置密码

2、设置

1、编辑文件

1
vim /etc/my.cf

2、找到文件位置

1
[mysqld]

3、加入忽略密码登录的设置

1
skip-grant-tables

4、保存退出

1
 :wq

5、重启mysql

1
systemctl restart mysqld.service

3、修改密码

1、进入mysql

1
mysql -uroot -p    #提示输入密码直接回车

2、修改root密码

1
update mysql.user set authentication_string=password('123456') where User="root" and Host="localhost";

3、刷新系统授权表

1
flush privileges;

4、配置登录信息

1
grant all on *.* to 'root'@'localhost' identified by '123456' with grant option;

4、取消跳过

1
2
3
4
5
6
7
vim /etc/my.cf

# 删除/注释
skip-grant-tables

# 保存退出
:wq

5、重启mysql

1
systemctl restart mysqld.service

6、登录mysql

1
2
3
4
mysql -uroot -p

# 输入密码
123456 

7、登录成功