Linux下忘記MySQL root密碼解決方法,基于Ubuntu 14.04 LTS。
本文是在root用戶下進行操作,其他操作需要對應權限
編輯mysql的配置文件/etc/mysql/my.cnf,在[mysqld]段下加入一行“skip-grant-tables”。
重啟mysql服務
sudo service mysql restart
用空密碼進入mysql管理命令行,切換到mysql庫。
root@DENGJAMESLI:~$ mysql Welcome to the MySQL monitor. Commands end with ; or /g. mysql> use mysql 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
,使用新的密碼登陸,修改成功。
www.linuxidc.com @ubuntu:~$ mysql -u root -p new_pass Welcome to the MySQL monitor. Commands end with ; or /g. mysql>
以上所述是小編給大家介紹的Ubuntu下忘記MySQL root密碼解決方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!
新聞熱點
疑難解答
圖片精選