os

mariadb 계정 생성 및 권한주기

littlecarbb 2016. 12. 13. 14:41

create user '계정아이디'@'%' identified by '비밀번호'; 


grant all privileges on *.* to dev@'%' identified by '비밀번호' with grant option;

flush privileges;