mysq-5.7忘记密码修改

一,停止mysql

/etc/init.d/mysqld stop

二,启动mysql

mysqld_safe --skip-grant-tables

安全模式+免验证启动服务

三,登入mysql服务器修改密码

5.7以前版本
update mysql.user set password = password('123456') where user='root';

5.7以后的版本
update mysql.user set authentication_string = password('123456') where user='root';

四,启动mysql

  

ps -ef 杀除mysql相关进程

然后再次启动mysql就可以了

 

posted on 2019-07-19 11:21  kingle-l  阅读(197)  评论(0编辑  收藏  举报

levels of contents