https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
bind-address = 0.0.0.0 로 변경 후 mysql 재시작
먼저 mysql이 설치된 리눅스서버에서 명령어로 mysql에 접속한다.
이후 아래 설정을 추가한다.
create user dbuser@'%' identified by 'dudemdvh123!';
grant all privileges on . to 'dbuser'@'%';
show grants for dbuser@'%';
flush privileges;