I've installed PostgreSQL using brew on Lion, it starts up okay but wouldn't shutdown. Tried the below:
$ #started with
$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
$ #tried stoping with
$ pg_ctl -D /usr/local/var/postgres stop -m immediate
waiting for server to shut down................................... failed
pg_ctl: server does not shut down
Any help is much appreciated.
Update
I fixed this issue by deleting the Launch Agent.
launchctl unload -w ~/Library/LaunchAgents/org.postgresql.postgres.plist
rm ~/Library/LaunchAgents/org.postgresql.postgres.plist
Thanks
$ launchctl load -w ~/Library/LaunchAgents/org.postgresql.postgres.plist– stantonk Dec 23 '11 at 6:37