首先找到一個和你安裝相同版本的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