sudo apt-get update
sudo apt-get install mysql-server
cd /etc/mysql/mysql.conf.d/
sudo vi mysqld.cnf
# localhost which is more compatible and is not less secure.
# bind-address = 127.0.0.1
# mysqlx-bind-address = 127.0.0.1
bind-address = 0.0.0.0
mysqlx-bind-address = 0.0.0.0
sudo mysql -u root -p
처음엔 그냥 엔터쳐서 드가면 됨
mysql > create user 'testUser'@'%' identified by 'ssafy';
mysql > GRANT ALL ON *.* TO 'testUser'@'%';
mysql > FLUSH PRIVILEGES;
Hostname : EC2 퍼블릭 IPv4 주소
Username : 전에 추가한 유저 이름 (여기선 귀찮아서 걍 root로 함)
Store in Vault.. → Password : 전에 추가한 유저 패스워드