mysql 忘记密码,1045错误修改方法
0 ihunter 2018/07


解决方法:

1.先找到mysql bin目录下的my.ini文件,在[mysql]下面加上 skip-grant-tables  用于跳过密码

2.重启服务器

service mysqld restart

3.进入cmd,重置密码

mysql -uroot -p  回车

不用管password 回车

use mysql;   回车

修改密码:

update user set authentication_string=password('123456') where user='root';
flush privileges;  刷新数据库
quit;

4.修改my.ini 注释掉skip-grant-tables;保存退出

5.重启服务器

service mysqld restart


收藏 有帮助 没帮助

上篇: 服务器mysql备份脚本
下篇: MySQL添加用户、删除用户与授权

相关主题
 IT博客索引
 AI软件索引
 猜你喜欢
热门
焦点
视点
头条