1. 개요
mysql user 생성, 삭제, 확인, 권한 할당 관련 명령어
2. Command
모든 user 보기 | use mysql; select user,password,host from user; |
user 생성 | create user ‘[username]’@’localhost’ identified by ‘[PW]’; % ; 모든 IP 허용 |
user 삭제 | drop user ‘[ID]’@’localhost’; |
user 권한 확인 | show grants for [ID]@[Host]; |
DB 권한 부여 및 계정 생성까지 한번에! | grant all privileges on [DB명].* to [ID]@’%’; ; 모든 권한 부여 ex> grant all privileges on etrans.* to ‘userid’@’localhost’ identified by ‘testpw’; grant select, insert, update on mysql.* to [ID]@’%’; ; select, insert, update 권한 부여 / mysql DB에 대한 권한 부여show grants for [ID] ; 해당 계정의 권한 확인 |