Re: failure on 'pg_ctl stop' command

From: "Tena Sakai" <tsakai(at)gallo(dot)ucsf(dot)edu>
To: "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com>
Cc: <pgsql-admin(at)postgresql(dot)org>
Subject: Re: failure on 'pg_ctl stop' command
Date: 2007-10-11 17:45:59
Message-ID: FE44E0D7EAD2ED4BB2165071DB8E328C03062CC6@egcrc-ex01.egcrc.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Many thanks, Scott.

Tena Sakai

-----Original Message-----
From: Scott Marlowe [mailto:scott(dot)marlowe(at)gmail(dot)com]
Sent: Thu 10/11/2007 10:03 AM
To: Tena Sakai
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN] failure on 'pg_ctl stop' command

On 10/11/07, Tena Sakai <tsakai(at)gallo(dot)ucsf(dot)edu> wrote:
>
>
>
> Hi Everybody,
>
> I had a failure on stopping postgres.
> The command I issued was:
> >> pg_ctl stop -m s
>
> and its response was:
> >> waiting for server to shut
> down...............................................................
> failed
> >> pg_ctl: server does not shut down
>
> I repeated the same command and the response was identical.
> I proceeded to issue:
> >> pg_ctl stop -m f
>
> and this time it came back with:
> >> waiting for server to shut down.... done
> >> server stopped
>
> Would somebody please tell me what this means?
> Is it indicative of some trouble? What can/Should
> I do to remedy the situation?

Normally this means that you have clients connected to the db while
it's trying to shut down.

On the server, run

ps ax|grep postgres

and look for a client connected in IDLE state.

You can either disconnect all the clients, or use -m f, which will
disconnect them for you.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Mark Steben 2007-10-11 18:21:33 postgres 8.2.4 new installation - trying to get autovacuum to work
Previous Message Scott Marlowe 2007-10-11 17:03:51 Re: failure on 'pg_ctl stop' command