반응형
<권한설정>
grant all privileges on 디비명.테이블명 to 사용자@'접속지 주소' identified by '암호' (with grant option);
grant all privileges on *.* to root@'%' identified by '암호' with grant option;
grant all privileges on *.* to root@'localhost' identified by '암호' with grant option;
<권한 제거>
revoke all on 디비명.테이블명 from 사용자;
<권한 적용>
# 모든 명령 후에 항상 아래 명령을 실행해야 실제로 적용된다.
flush privileges;
<기타>
# '사용자'가 '암호'으로 localhost 에서 db1 디비의 table1에 접속하도록 허용
grant all privileges on root.db1 to 사용자@'localhost' identified by '암호';
# '사용자'가 '암호'으로 111.222.333.444 에서 db1 디비의 모든 테이블에 접속하도록 허용
grant all privileges on root.* to 사용자@'111.222.333.444' identified by '암호';
# '사용자'가 '암호'으로 111.222.333.0/24 에서 모든 디비와 테이블에 접속하도록 허용
grant all privileges on *.* to 사용자 @'111.222.333.%' identified by '암호';
'프로그래밍 > Mysql' 카테고리의 다른 글
MYSQL - MYSQL 한글 깨짐 현상 해결책 (0) | 2015.01.10 |
---|---|
Mysql - Text field 종류별 크기 (0) | 2015.01.09 |
MYSQL - SQL AS(Aliases) 구문 사용법 (0) | 2014.06.25 |
MYSQL - COLSPAN 옵션 (0) | 2014.06.05 |
MYSQL - flush privileges (0) | 2014.02.04 |
MYSQL - ENUM SET TYPE (1) | 2013.12.25 |
MySQL ENUM 사용 (0) | 2013.12.25 |
MySql 오늘 날짜만 쉽게 좀 뽑아보자~ (0) | 2013.11.18 |