3306번 포트(port)의 문제라고만 생각했었지만 그게 아니더군요
# 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
# 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 부분을 # 으로 주석처리 해주면 원격 접속이 가능해집니다.
아무래도 보안상 특정 아이피만 접근하도록 설정해주는 곳인 거 같군요..
설정이 끝났다면 mysql 재실행
# /etc/init.d/mysql restart

