OSX Lionにosx-gcc-installerCommand Line Tools for XCodeHomebrewを入れてある。

MySQLほぼ使ったことなかったのでおっかなびっくりインストールした

brew install mysql++
brew tap homebrew/versions
brew search sql
brew install mysql51


portsが入ってるのでlinkを解決
brew link mysql51


unset TMPDIR
/usr/local/Cellar/mysql51/5.1.58/bin/mysql_install_db


LaunchAgent登録
cp /usr/local/Cellar/mysql51/5.1.58/com.mysql.mysqld.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.mysql.mysqld.plist
ps aux | grep mysql
loadで起動、unloadで止めれる


test DBを消したりrootパスワード設定したりする
/usr/local/Cellar/mysql51/5.1.58/bin/mysql_secure_installation


新規ユーザー追加する
mysql -uroot -p
GRANT ALL on *.* TO shokai@"localhost" IDENTIFIED BY "password";
FLUSH PRIVILEGES;


ログインしてみる
mysql -ushokai -p
mysql> show databases;