$ sudo apt install mariadb-client
$ mysql -h [인스턴스 퍼블릭 IPv4 주소] -P [DB port, 보통 3306] -u [MySQL 사용자명] -p]
여기서 잠깐,
ERROR 2002 (HY000): Can't connect to server on '[인스턴스 퍼블릭 IPv4 주소]' (115)
아마 이와 같은 에러 메시지가 발생하며 연결이 되지 않을 것!
$ cd /etc/mysql/mysql.conf.d/
$ sudo vi mysqld.cnf
[mysqld.cnf]
#
# The MySQL database server configuration file.
.
(중략)
.
# 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 # 수정!!! -> 0.0.0.0
mysqlx-bind-address = 127.0.0.1
=> bind-address를 localhost(127.0.0.1)가 아닌 '0.0.0.0'으로 변경하여 외부 접근도 허용시켜 줌$ sudo service mysql restart
$ mysql -h [인스턴스 퍼블릭 IPv4 주소] -P [DB port, 보통 3306] -u [MySQL 사용자명] -p]