<리눅스>
1. mysql 프로세스 kill
2.싱글모드로 실행
./mysql/bin/mysqld_safe --user=mysql --skip-grant-tables &
3. root 패스워드를 변경
mysql> use mysql;
mysql> update user set password=password('새로운암호입력') where user='root';
mysql> flush privileges;
4. MySQL 재시작(정상적인 방법)
<윈도우>
설명은 Window 기준입니다.
일단 실행되고 있는 MySQL 데몬을 종료 하여야 합니다.
작업 관리자(Ctrl+Shift+Esc) 또는 Ctrl+Alt+Del 을 실행시켜서
mysqld.exe 또는 mysqld-nt.exe 를 찾아서 프로세스 종료 해주신 다음 아래의 방법대로 작업하시기 바랍니다.
MS-DOS 창을 열어서
Windows 98 :: 시작 -> 실행 -> command
Windows NT :: 시작 -> 실행 -> cmd
MySQL 이 설치된 디렉토리로 이동하신다음
mysqld.exe --skip-grant
다음과 같이 승인 절차를 거치지 않도록 MySQL 데몬을 실행합니다.
또 다른 MS-DOS 창을 열어서 MySQL 이 설치된 디렉토리에서 아래와 같이 실행 합니다.
mysql.exe
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.14-max-debug
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
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
원본글
'computer science > DataBase' 카테고리의 다른 글
mysql root 외부 접속 권한 주기 (0) | 2012.11.04 |
---|---|
[펌] mysql 완전 삭제 (0) | 2012.04.11 |