一,停止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就可以了

 

转载于:https://www.cnblogs.com/kingle-study/p/11212172.html

Logo

更多推荐