Mysql 유저 생성1 mysql user 생성 및 권한 설정 1. 유저 생성 create user 'userid'@'%' identified by '비밀번호'; - %의 경우, 접속할 host 주소 이며, %는 모든 host 접속을 가능하게 한다. flush privileges; 2. 권한 설정 - 모든 권한 설정 grant all privileges on *.* username@host identified by 'password'; flush privileges; - select 권한 설정 grant select on 'test'.* to 'user'@'host' identied by 'password'; - kof DB에 select, insert, update, delete 권한을 192.168.1.0/24 으로 접근하는 bluemary에게 권한 주기 gra.. 2020. 6. 1. 이전 1 다음