반응형
MySQL 사용자 계정의 허용 호스트를 % 또는 IP주소로 허용해 주고 나서도 제대로 연결이 안되는 문제를 겪었다.
이를 해결하기 위해서는 my.cnf 를 수정하여 MySQL을 재실행 해주어야 한다.
1. my.cnf 수정
vi /etc/mysql/my.cnf
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1
#
# * Fine Tuning
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1
#
# * Fine Tuning
위의 bind-address = 127.0.0.1 로 된 부분을 아래처럼 주석처리해 준다.
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
# bind-address = 127.0.0.1
#
# * Fine Tuning
# localhost which is more compatible and is not less secure.
# bind-address = 127.0.0.1
#
# * Fine Tuning
2. MySQL 재실행
/etc/init.d/mysql restart
반응형
'IT > 리눅스팁' 카테고리의 다른 글
우분투 APM컴파일 설치 1. 패키지 제거 (0) | 2009.04.10 |
---|---|
우분투 사용자 계정 추가 (0) | 2009.02.04 |
Ubuntu 7.10 에서 mod_rewrite 설치 및 활성화하기 (0) | 2008.05.13 |
Ubuntu(우분투) 업데이트시 failed to write cache error 에러 (0) | 2007.12.18 |
우분투(Ubuntu)에서 한글(Hangul) 설정하기 (0) | 2007.06.02 |