Re: it refuses to go down... - Mailing list pgsql-admin

From Peter Koczan
Subject Re: it refuses to go down...
Date
Msg-id 4544e0330803251059v57938d71q68e41cacda057160@mail.gmail.com
Whole thread Raw
In response to Re: it refuses to go down...  ("Tena Sakai" <tsakai@gallo.ucsf.edu>)
List pgsql-admin
>  > did you try pg_ctl -m immediate stop   ???
>
>  I just did, and it worked.
>
>    $ pg_ctl stop -m immediate
>    waiting for server to shut down.... done
>    server stopped

I'd be careful about shutting down using "immediate" mode. It forces
the database into recovery mode.

Your problem could be that one or two connections are in a weird state
and even "fast" stopping can't kill them. Next time you have to
restart the server, you should check on the status of connections and
see if any are in a weird state. I had to deal with this recently
where the status was "notify interrupt" and I couldn't even stop fast.
I had to change some application code, but not much.

Just run "ps ax | grep post" (or whatever options you like to give ps
to show all processes) to filter out postgres processes. A connection
entry will look like like.

[pid] ?        Ss      0:00 postgres: [user] [database] [client] [status]

Peter

pgsql-admin by date:

Previous
From: "Uwe C. Schroeder"
Date:
Subject: Re: postgresql is slow with larger table even it is in RAM
Next
From: "Tena Sakai"
Date:
Subject: Re: it refuses to go down...