MYSQL 접근 권한 설정
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'; costo..
2008. 10. 9.