본문 바로가기
데이타베이스

MYSQL 접근 권한 설정

by 세이박스 2008. 10. 9.
반응형
1. 각 DataBase별 권한 설정

# grant all privileges on *.* to root@localhost ;
root에 대해서 모든 권한을 부여.

# grant SELECT,INSERT,UPDATE,DELETE,CREATE,DROP on bankaccount.* to custom@localhost identified by 'stupid';
costom은 local호스트에 접근가능(select,insert,update,delete,create,drop), bankaccount 데이타베이스에 접속 가능, 비밀번호 'stupid'

# grant all privileges on expenses.* to custom@whitehouse.gov identified by 'stupid';
costom은 whitehouse.gov에 접근가능, 모든 권한, expenses 데이타베이스에 접속 가능, 비밀번호 'stupid'

# grant all privileges on *.* to custom@%.gov identified by 'stupid';
costom은 모든 사이트에 접근가능, 모든 권한, 모든 데이타베이스에 접속 가능, 비밀번호 'stupid'

# flush privileges;
새로고침

반응형