IT/리눅스팁

우분투에서 MySQL 원격 접속 허용하기

k2man 2008. 9. 7. 16:16
반응형

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

위의 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

2. MySQL 재실행

/etc/init.d/mysql  restart

반응형