# ps -ef | grep mysqld
2. 실행중인 mysql 종료
# killall mysqld
3. grant-table 미사용모드로 mysql 시작 (mysql 데몬 실행)
# cd /usr/local/mysql/bin
# ./mysqld_safe --skip-grant-tables &
4. mysql 접속
# ./mysql -u root mysql
5. password 갱신
# update user set password=password('123') where user = 'root';
'Server-Side > MySQL' 카테고리의 다른 글
[MySQL] Master-Slave Replication (1) | 2010.08.29 |
---|---|
[MySQL] index 추가, 삭제, 확인하기 (0) | 2010.08.16 |
MySQL에서 인덱스 체크하기 : EXPLAIN (0) | 2009.12.11 |
php에서 sprintf로 쿼리문 작성하기. (0) | 2009.12.10 |
세로를 가로로 (0) | 2009.11.04 |