龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

修改忘記MySQL root密碼

2015.09.10 | 520閱讀 | 0條評論 | 數(shù)據(jù)庫

最近有1臺vps上的mysql root密碼忘記,,很少用到root登陸,,上網(wǎng)找了一些。。有很多方法,以下是我實驗操作過的,,但不一定只有這種可以實現(xiàn)。。


解決方法:


在my.cnf的[mysqld]字段加入:skip-grant-tables然后重啟你的mysqld,這樣久沒有密碼了.


然后進入mysql。

UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root'

FLUSH PRIVILEGES;

最后去掉my.cnf中的skip-grant-tables


重啟mysqld。


贊 (

發(fā)表評論