[MySQL] MySQL 외부 접속 불가능 현상 해결 방법 (접근 권한)
목차 1. 증상 1.1. ERROR 1130 (HY000): Host 'Host IP' is not allowed to connect to this MariaDB server # mysql -u root -h HostIP -p --port 3306 Enter password: ******** ERROR 1130 (HY000): Host 'Host IP' is not allowed to connect to this MariaDB server 원인: 외부에서 접속할 경우 접속 권한이 없는 경우 다음과 같은 에러가 발생합니다. 해결: MySQL(MariaDB)가 설치된 서버에서 권한을 추가해 줍니다. (이 게시물의 3번을 참조해주세요) 1.2. ERROR 2002 (HY000): Can't connect to..