Macにhomebrew経由でAipo開発環境を構築する(2)

データベースをインストールします

PostgreSQLをインストールする

brew install postgresql
#自動起動設定
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
#ユーザー作成
createuser -s -P postgres
psql postgres
#データベース作成
postgres=# create database org001 owner postgres encoding 'UTF8';

MySQLをインストールする

brew install mysql
vim /usr/local/etc/my.cnf
#自動起動設定
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
mysql_secure_installation