Mysql忘记密码的方法
1:停止mysql
service mysql stop systemctl stop mysql #Centos7用这个
2:打开配置文件 etc/my.cnf,【mysqld】下面添加一行代码:skip-grant-tables,表示跳过授权。
3:启动mysql,然后进入mysql控制台,回车进入
mysql -uroot -p
4:选择mysql数据库
use mysql;
5:查看mysql库中的表
show tables;
6:更改root密码
update user set password=password('123') where user="root";
7:刷新数据库
flush privileges;
8:my.cnf中的skip-grant-tables去掉,一定不能忘记