mysql忘記root帳號和密碼,修改root使用者名稱和密碼解決方案

來源:互聯網
上載者:User

  首先找到一個和你安裝相同版本的mysql機子(當然,root帳號和密碼你肯定要知道),找到安裝目錄裡的data檔案夾(如:C:\Program Files\MySQL\MySQL Server 5.0\,data檔案夾下的mysql是系統資料庫,帳號資訊都存放在mysql檔案夾裡的user表,也就是這三個檔案user.MYD,user.frm,user.MYI。),然後到你自己的機子上面停止mysql服務,把上面三個檔案覆蓋掉你機子上面的這三個檔案,啟動mysql服務。在開始菜單裡運行cmd,進入到mysql安裝目錄裡的bin檔案夾(如:C:\Program Files\MySQL\MySQL Server 5.0\bin),然後通過mysql -uroot -p命令進入,運行user mysql進入mysql資料庫,最後再用命令:update user set User='yeer',Password=password('123456')更新你要的使用者名稱和密碼。最後重起一下mysql服務就搞定了。

 

覆蓋完檔案後的操作過程如下:

C:\Program Files\MySQL\MySQL Server 5.0\bin>mysql -uroot -p
Enter password: *****
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 5.0.22-community-nt

Type 'help;' or '"h' for help. Type '"c' to clear the buffer.

mysql> use mysql;
Database changed
mysql> update user set User='yeer',Password=password('123456');
Query OK, 1 row affected (0.02 sec)
Rows matched: 1  Changed: 1  Warnings: 0

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.