1.停止mysql服務(wù):service mysql stop
2進(jìn)入到skip-grant-tables模式:?mysqld_safe --skip-grant-tables
3修改密碼:update user set password=password("12345") where user="root";
4刷新權(quán)限:flush privileges;
5.停止skip-grant-tables模式的數(shù)據(jù)庫(kù),正常啟動(dòng)Mysql
6使用剛剛修改的密碼登錄數(shù)據(jù)庫(kù):?mysql -uroot -p12345
7.重新登錄之后惹挟,需要重置密碼:SET PASSWORD = PASSWORD('12345');
8完成