Mac MySQL 수신할 IP 주소 설정

899 단어 MySQL
Mysql 기본 감청127.0.0.13306 포트, 변경할 필요가 있으면 수정할 수 있는 my.cnfbind-address 포트
/usr/local/etc/my.cnf
$ vim my.cnf

# Default Homebrew MySQL server config
[mysqld]
# Only allow connections from localhost
#bind-address = 0.0.0.0  #0.0.0.0          
bind-address = 127.0.0.1  #          

Ps. 수정 후 MySQL 다시 시작
$ mysql.server restart
netstat 현재 포트에 대한 스니핑을 확인할 수 있습니다.
netstat -tln | grep 3306

좋은 웹페이지 즐겨찾기