Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
4  
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 '12 at 16:39

2 Answers

up vote 13 down vote accepted
launchctl unload -w ~/Library/LaunchAgents/org.postgresql.postgres.plist
rm ~/Library/LaunchAgents/org.postgresql.postgres.plist
share|improve this answer
3  
This worked for me too, except my Launch Agent path was: ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist – Shevaun Apr 18 at 22:59
Thanks, this worked for me too. I also had to use the homebrew path posted by Shevaun – Paul Oliver May 4 at 4:20

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

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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