리눅스/mysql

mysql 디비 계정생성및 권한설정

Rohin 2014. 11. 23. 10:55
반응형

mysql 5.5 user, 데이터베이스 생성, 사용자 추가, 삭제

*참고사항: 로컬에서 접속시 localhost 권한도 추가 해야 한다.

*권한 위임
mysql> grant all privileges on *.* to '계정'@'localhost'identified by '비번'
모든 DB 로컬에서만 접속

mysql> grant all privileges on *.* to '계정'@'%' identified by '비번' with grant option
원격에서 접속가능

*권한 보기
# show grants for '계정'@'localhost'

*권한 적용
# flush privileges

*user 삭제
# drop user '계정'@'localhost';

 

참고: 계정생성 풀어서 쓴 것

grant all privileges on 디비명.테이블명 to '계정'@'%' identified by '비번' with grant option