Re: how to test whether postgres server is running? - Mailing list pgsql-general

From Darren Ferguson
Subject Re: how to test whether postgres server is running?
Date
Msg-id Pine.LNX.4.44.0303271818280.29265-100000@thread.crystalballinc.com
Whole thread Raw
In response to how to test whether postgres server is running?  (Reynard Hilman <reynardmh@lightsky.com>)
List pgsql-general
netstat -anp | grep postmaster

This will tell you if postmater is listening on the port.

If you do not have root access then

netstat -an | grep 5432

HTH

Darren

On Thu, 27 Mar 2003, Reynard Hilman wrote:

>
> Hi everyone,
>
> I run into problem where pg_pconnect (in php script) failed to get
> connection to the postgres server even when the server is actually
> running because the server is too busy (serving too many requests).
>
> So I want to check from php script if postgres server is running. The
> only way I could think of to is telnet the server on port 5432 (where
> postgres is listening).
>
> Does someone know a better way to check if postgres server is running?
>
> thanks
> - reynard
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
>

--
Darren Ferguson


pgsql-general by date:

Previous
From: Darren Ferguson
Date:
Subject: Re: how to test whether postgres server is running?
Next
From: "Delao, Darryl W"
Date:
Subject: Re: Postgres logs