2008年7月3日 星期四

忘記mysql的root密碼

http://blog.tmu.edu.tw/tedyeng/000096.html

一、停用mysql

二、重新啟動mysql
mysqld -u root --skip-grant-tables &

三、修改root密碼
use mysql;
UPDATE user SET password=password('new password') where user='root';
FLUSH PRIVILEGES;

沒有留言: