Realman's World

mariaDB 외부접속 설정 본문

Kairos/Item

mariaDB 외부접속 설정

리얼맨 2015. 5. 12. 22:48

mysql -u root -p


[mariaDB prompt]

create database test;

use test;

create user 'testuser'@'localhost' identified by '1q2w3e';

create user 'testuser'@'%' identified by '1q2w3e';     -> 외부접속시 %로 설정

grant all privileges on test.* to 'testuser'@'localhost';

grant all privileges on test.* to 'testuser'@'%';

flush privileges;

exit


sudo vi /etc/mysql/my.cnf

#bind-address   = 127.0.0.1 -> 주석 처리


mariaDB 실행 후 외부접속하면 정상 접속


참조 : http://ora-sysdba.tistory.com/43

Comments