service MysqL stop
2.启动MysqL的安全模式
MysqLd_safe --skip-grant-tables
等1分钟如果还没返回的话,新开shell执行以下语句
MysqL -u root -p
输入密码时,直接回车
4.选择MysqL系统库
use MysqL
5.查看当前系统用户root的密码
select user,host,password from user where user="root"
查看的password是经过加密的
update user set password=PASSWORD("your_password") where user="root"
7.刷新一下系统的权限
flush privileges;
8.重新启动MysqL
service MysqL restart
原文链接:https://www.f2er.com/mysql/530260.html