비밀번호분실1 MySQL root 암호 초기화 하는 방법 ■ MySQL root 비밀번호를 잊어버렸을 경우 재설정 하는 방법 1. 실행중인 MySQL을 종료한다. # killall mysqld 2. "./mysqld_safe --skip-grant-table &" 로 사용자 인증과정 없이 MySQL를 실행한다. # ./mysqld_safe --skip-grant-table & 3. 패스워드 없이 MySQL root 계정으로 MySQL에 접속한다. # ./mysql -u root mysql 4. update문으로 MySQL 데이터베이스의 user 테이블에 있는 MySQL root사용자의 패스워드를 변경한다. mysql> update user set password=password('1111') where user = 'root'; 5. "flush privile.. 2010. 1. 9. 이전 1 다음