Notice
Recent Posts
Recent Comments
- Today
- Total
내 머릿속 데이터베이스
[MYSQL] 접근 권한 설정 본문
출처 : VB.Net 과 MySql 연동하기(http://darkmages.tistory.com/22)
db를 a라는 사용자에게 192.168.0.1~255까지 허용하려면,
mysql> use mysql;
mysql> update db set host='192.168.0.%' where user='a';
mysql> update user set host='192.168.0.%' where user='a';
mysql> flush privileges;
host='%' 를 입력하면 모든 IP에서 접근이 가능
Comments