忘記MySQL root密碼解決方法,基於Ubuntu 12.04 LTS
忘了mysql密碼,從網上找到的解決方案記錄在這裡。
www.2cto.com
編輯mysql的配置文件/etc/mysql/my.cnf,在[mysqld]段下加入一行“skip-grant-tables”。
重啟mysql服務
abbuggy@abbuggy-ubuntu:~$ sudo service mysql restart
mysql stop/waiting
mysql start/running, process 18669
用空密碼進入mysql管理命令行,切換到mysql庫。
abbuggy@abbuggy-ubuntu:~$ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
mysql> use mysql
Database changed
執行update user set password=PASSWORD("new_pass") where user='root'; 把密碼重置為new_pass。退出數據庫管理。 www.2cto.com
mysql> update user set password=PASSWORD("new_pass") where user='root';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 4 Changed: 0 Warnings: 0
mysql>quit
回到vim /etc/mysql/my.cnf,把剛才加入的那一行“skip-grant-tables”注釋或刪除掉。
再次重啟mysql服務sudo service mysql restart,使用新的密碼登陸,修改成功。
abbuggy@abbuggy-ubuntu:~$ mysql -uroot -pnew_pass
Welcome to the MySQL monitor. Commands end with ; or \g.
mysql>