PostgreSQL が自動起動するようになっていたので止めときます。開発・検証用ですので。
OS X では daemon の起動は launchctl コマンドで設定できるようです。拡張子が plist な設定ファイルでコントロールしているそうなので探します。
$ locate plist | grep postgres
/Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist
/Library/PostgreSQL/8.4/uninstall-postgresql.app/Contents/Info.plist
com.edb.launchd.postgresql-8.4.plist というファイルのようです。
$ sudo launchctl unload -w /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist
再起動して確認。
$ ps ax | grep postgres
419 s000 S+ 0:00.00 grep postgres
おけおけ。
逆に自動起動させたいときは
$ sudo launchctl load -w /Library/LaunchDaemons/com.edb.launchd.postgresql-8.4.plist
ですかね。
Tags: OS X, PostgreSQL