MySQL管理員密碼忘記修改方法

來源:互聯網
上載者:User

MySQL管理員密碼忘記修改方法

1、先關掉mysql

service mysqld stop

2、手動啟動

兩種方法

A:service mysqld start  --skip-grant-tables --skip-name-resolve啟動

B:編輯/etc/init.d/mysqld檔案,在如橫線處加上 --skip-grant-tables --skip-name-resolve這兩句,但是修改完成以後需要去掉加的東西。

3、運行mysql

命令列直接輸入mysql

4、修改密碼

use mysql;

這裡只允許這一種方式改密碼update user set password=password('123456789') where user='root';

其中123456789是我設定的密碼。

5、關閉mysql

service mysql stop

6、重啟mysql

這裡注意如果是按步驟2中的A方法可直接重啟,如果是B方法還需將加的內容刪除在重啟。

service mysqld start

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.