Re: cant connect to the database, even after doing start - Mailing list pgsql-general

From Scott Marlowe
Subject Re: cant connect to the database, even after doing start
Date
Msg-id 1152806277.14241.69.camel@state.g2switchworks.com
Whole thread Raw
In response to cant connect to the database, even after doing start of postmaster using a script  ("surabhi.ahuja" <surabhi.ahuja@iiitb.ac.in>)
List pgsql-general
On Thu, 2006-07-13 at 01:20, surabhi.ahuja wrote:
> Hi all,
> i have a script to stop and start postmaster
>
> However i have noticed this many a time sdnow. I stop postmaster using
> that script
> and then start using a script.
>
> However if i try to do psql <dbname>, it gives me an error saying that
> the postmaster is not up.
>
> Why is it that the postmaster went down on its own, even though i had
> done a srart after stop.

How are you stopping the database?  Let me guess that it's "pg_ctl -m
immediate stop".

pg_ctl --help tells us:

Shutdown modes are:
  smart       quit after all clients have disconnected
  fast        quit directly, with proper shutdown
  immediate   quit without complete shutdown; will lead to recovery on
restart

Basically, -m immediate does a kill -9 on all the postgresql processes.
It's an inch away from pulling the plug, except that lying hardware
still gets to flush its caches.

So, if you're stopping pgsql that way, then when it starts up, it does
so in recovery mode, and it can't allow connections until recovery is
finished.

If you're stopping it some other way though, then things might be going
wrong in some other way.

pgsql-general by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: db clustering?
Next
From: Scott Marlowe
Date:
Subject: Re: SQL Standards Compliance With Case