행위

MYSQL 외부접속허용

DB CAFE

Dbcafe (토론 | 기여)님의 2019년 12월 2일 (월) 20:34 판 (새 문서: == 1.root권한 으로 접속 == <source lang=sql> mysql> use mysql; mysql> select host, user, password from user; </source> == 2.권한 설정 하기 == 1) 특정 IP 접근 허용...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
thumb_up 추천메뉴 바로가기


1 1.root권한 으로 접속[편집]

mysql> use mysql;
mysql> select host, user, password from user;

2 2.권한 설정 하기[편집]

1) 특정 IP 접근 허용 설정

mysql> grant all privileges on *.* to ‘root’@‘192.168.56.101’ identified by ‘root의 패스워드’;

2) 특정 IP 대역 접근 허용 설정

mysql> grant all privileges on *.* to ‘root’@‘192.168.%’ identified by ‘root의 패스워드’;

3) 모든 IP의 접근 허용 설정

mysql> grant all privileges on *.* to ‘root’@‘%’ identified by ‘root의 패스워드’

3 3.등룩확인 후 적용[편집]

mysql> flush privileges;

== 4. my.cnf 파일 변경

bind-address 주석처리
vi /etc/my.cnf
# bind-address = 127.0.0.1

4 5. mysql 재시작[편집]

/etc/init.d/mysqld restart