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