sudo apt-get update
sudo apt-get install mysql-server
sudo ufw allow out 3306/tcp
sudo ufw allow in 3306/tcp
cd /etc/mysql/mysql.conf.d
vim mysqld.cnf
#mysql접속 후 test2계정 생성 및 권한 부여
mysql -u root -p
create user 'test2'@'%' identified by '123';
grant all privileges on *.* to "test2"@"%";
flush privileges;
sudo systemctl restart mysql