close
原文出處:http://blog.tmu.edu.tw/tedyeng/000096.html
1. 先用系統管理員的帳號登入,如 Linux 的 root 或 Windows 的 Administrator。
2. 強制結束 Mysql 的 process:
a. Windows 用工作管理員
b. Linux 可以執行以下的指令:killall mysqld
3. 接下來,用以下的指令啟動並進入 MySQL:
a. Windows:mysqld-nt -u root --skip-grant-tables & mysql
b. Linux:mysqld -u root --skip-grant-tables & mysql
4. 進入 MySQL 的命令提示列後執行:
use mysql;
UPDATE user SET password=password('新的密碼') where user='root';
FLUSH PRIVILEGES;
5. 完成。
.
全站熱搜
留言列表