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

link|improve this question

20% accept rate
1  
That is the correct fix. It worked for me on OS X Snow Leopard as well. You don't need to delete the plist though, you just have to do the unload. You can re-start it by issuing: $ launchctl load -w ~/Library/LaunchAgents/org.postgresql.postgres.plist – stantonk Dec 23 '11 at 6:37
@Greg: Please add your solution as an answer and accept it, so that this questions doesn't show up on the list of unanswered questions. – kgrittn Apr 30 at 16:39
feedback

1 Answer

shutdown Postgresql Server with parameter "-m ommediate" is a dangerouse way . Because “Immediate” mode will abort all server processes without a clean shutdown. This will lead to a recovery run on restart. Try to shutdown PostgreSQL with parameter " -m fast"。 "Fast” mode does not wait for clients to disconnect and will terminate an online backup in progress. All active transactions are rolled back and clients are forcibly disconnected

--just as the follwing pg_ctl stop -D /usr/local/var/postgres -m fast

For more information about pg_ctl please visit http://www.postgresql.org/docs/9.0/static/app-pg-ctl.html

link|improve this answer
The problem was about clean shutdown but rather about the server shutting down. Any way, its fixed and I've updated the solution in the question. – Greg Aug 5 '11 at 6:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.