https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04

  1. 외부접속 설정

sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

bind-address = 0.0.0.0 로 변경 후 mysql 재시작

  1. mysql 외부접속이 가능한 계정 생성 + 권한 설정

먼저 mysql이 설치된 리눅스서버에서 명령어로 mysql에 접속한다.

이후 아래 설정을 추가한다.

create user dbuser@'%' identified by 'dudemdvh123!';

grant all privileges on . to 'dbuser'@'%';

show grants for dbuser@'%';

flush privileges;