행위

MYSQL 외부접속허용

DB CAFE

Dbcafe (토론 | 기여)님의 2019년 12월 18일 (수) 21:57 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
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 '패스워드'’;

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 4. my.cnf 파일 변경[편집]

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

5 5. mysql 재시작[편집]

/etc/init.d/mysqld restart