參考資料:http://www.javashuo.com/article/p-cdixfltl-ca.htmlhtml
解決方法:mysql
1、經過編輯/etc/my.cnf文件在[mysqld]下面加上skip-grant-tables=1,保存退出;sql
2、重啓MySql服務【systemctl restart mysqld.service】;數據庫
3、以root身份登陸MySql【mysql -u root】;spa
4、進入mysql數據庫【mysql> use mysql;】;rest
5、修改root密碼:code
mysql> update user set authentication_string = password('新密碼'),password_last_changed=now() where user='root';
6、退出mysql,再次編輯/etc/my.cnf文件,將第一步中添加的skip-grant-tables=1刪掉,重啓啓動MySql服務便可。htm