본문 바로가기

IT/개발

Ubuntu MariaDB 외부 접속 허용

1. 사용자 추가('%'으로 추가)
# 사용자 추가
create user 'username'@'%' identified by 'password';
# 권한부여
grant all privileges on *.* to 'username'@'%'


2. conf 파일에 bind-address 수정
sudo vi /etc/mysql/mariadb.conf.d/50-server.cnf
# bind-address            = 127.0.0.1 # 주석처리
bind-address            = 0.0.0.0
 
$ service mysql restart


3. 방화벽에서 포트 허용
$ sudo ufw allow 3306/tcp