select user, host, password from mysql.user;
netstat -nltp
===
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 14315/mysqld
====
# 127.0.0.1 로컬 바인딩인 경우 외부 접근 불가합니다.
# 해제는 my.cnf 설정 추가 후 재시작 합니다.
vi my.cnf
===
#bind-address=127.0.0.1
bind-address = 0.0.0.0
===
/etc/init.d/mysqld restart