停用 MySQL 服務
Windows (在系統管理員權限下進入命令提示字元)
net stop mysql
Linux (各家有所不同,以 CentOS 作範例)
service mysqld stop
net stop mysql
service mysqld stop
C:\MySQL\bin> mysqld --skip-grant-tables
/usr/bin/mysqld_safe --skip-grant-tables
USE mysql; UPDATE user SET Password=password('your-new-password') WHERE User='root';