반응형
create database jejuwater;
grant all privileges on jejuwater.* to jejuwater@'%' identified by 'jejuwater';
flush privileges;
데이터베이스 생성
mysql> create database 데이터베이스명;
권한 추가
mysql> grant all privileges on DB명.* to DB유저id@'%' identified by 'DB유저패스워드' with grant option;
반응형