標籤:
Ubuntu(12.04)中安裝的mysql,忘記記錄使用者名稱密碼了,不想重裝,有木有重設密碼的方法?
有位園友給出瞭解決方法,在mysql 5.6.23上驗證沒有問題。
詳情用力戳這裡!
1、結束當前正在啟動並執行mysql進程。
# /etc/init.d/mysql stop
2、用mysql安全模式運行並跳過許可權驗證。
# /usr/bin/mysqld_safe --skip-grant-tables
3、重開一個終端以root身份登入mysql。
# mysql -u root
4、修改root使用者口令。
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update user set Password = PASSWORD(‘root‘) where User =‘root‘;
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> exit
5、結束mysql安全模式,用正常模式運行mysql。
# /etc/init.d/mysql restart
6、試試你新修改的口令
mysql> show grants for ‘root‘@‘127.0.0.1‘;
mysql> flush privileges;
mysql> quit
PS:對第六步的做點說明:
修改登入密碼後需要使用 "flush privileges" 重新整理系統許可權相關表,否則直接登入依舊會提示密碼不對。
在修改了 mysql庫的user、privilege表的資料後,使用這個命令便【不用重啟mysql服務】了。
【MySQL】囧,mysql忘記使用者密碼