mariadb 에 클라이언트 툴(HeidiSQL)로 접속했는데 아이피 거부를 당하는 경우

By | 4월 24, 2016

* 기본적으로 mariadb 는 원격접속을 허용하지 않는다고 한다. (^^ )
   그래서 아래와 같은 방법으로 해결을...

 

(1) mariadb console 접속

mysql --user=root --password=패스워드

 

(2) 외부 접속 허용 작업 (mariadb 프롬프트에서)

 

grant all privileges on *.* to root@'클라이언트IP' identified by '패스워드' with grant option;
flush privileges;

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments