Ubuntu下忘記MySQL密碼重設方法

一、結束當前正在運行的mysql進程。
mysql

# /etc/init.d/mysql stop

二、用mysql安全模式運行並跳過權限驗證。
# /usr/bin/mysqld_safe --skip-grant-tables

三、重開一個終端以root身份登陸mysql。
# mysql -u root

四、修改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

五、結束mysql安全模式,用正常模式運行mysql。
# /etc/init.d/mysql restart

六、試試你新修改的口令
 
mysql> show grants for 'root'@'127.0.0.1'; 

mysql> flush privileges;
mysql> quitsql

相關文章
相關標籤/搜索