etc

mysql 비밀번호 잊어버렸을때

우유빛 2010. 8. 24. 16:51

xp 기반

mysqld.exe --skip-grant

mysql.exe

use mysql;

UPDATE user SET password=PASSWORD('변경할패스워드') where user='root';

FLUSH PRIVILEGES;

quit