$ brew install mysql
$ mysql.server start
$ mysql -uroot -p
mysql> CREATE USER 'tanaguru'@'localhost' IDENTIFIED BY '<password>'; /
GRANT USAGE ON * . * TO 'tanaguru'@'localhost' IDENTIFIED BY '<password>'; /
CREATE DATABASE IF NOT EXISTS `tanaguru` CHARACTER SET utf8; /