참고 DB 생성

IT노트/MYSQL 2015. 2. 14. 18:09

create database redmine character set utf8;

mysql> create user 'redmine'@'localhost' identified by 'my_password'; 
mysql> create user 'redmine'@'%' identified by 'my_password';
mysql> grant all privileges on redmine.* to 'redmine'@'localhost';
mysql> grant all privileges on redmine.* to 'redmine'@'%';
mysql> \q


Posted by wychoi
,