mysqld.exe --skip-grant
다음과 같이 승인 절차를 거치지 않도록 MySQL 데몬을 실행합니다.
mysql> use mysql;
Database changed
mysql> UPDATE user SET password=PASSWORD('변경할패스워드') where user='root';
Query OK, 0 rows affected (0.14 sec)
Rows matched: 1 Changed: 0 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.11 sec)
mysql> quit
Bye
다음과 같이 승인 절차를 거치지 않도록 MySQL 데몬을 실행합니다.
mysql> use mysql;
Database changed
mysql> UPDATE user SET password=PASSWORD('변경할패스워드') where user='root';
Query OK, 0 rows affected (0.14 sec)
Rows matched: 1 Changed: 0 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.11 sec)
mysql> quit
Bye
'DATABASE' 카테고리의 다른 글
[mySQL] root 비번 잊어먹었을 때. (0) | 2007.01.13 |
---|---|
[mysql] DB 생성 및 권한 부여 (0) | 2007.01.13 |
[mysql] DB 생성 및 권한 부여 (0) | 2007.01.13 |