Re: RE: Intermittent Startup Failures

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Debra LaVille <debra(dot)laville(at)digeo(dot)com>
Cc: "'Ryan Mahoney'" <ryan(at)paymentalliance(dot)net>, pgsql-general(at)postgresql(dot)org
Subject: Re: RE: Intermittent Startup Failures
Date: 2001-07-19 01:50:19
Message-ID: 21653.995507419@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Debra LaVille <debra(dot)laville(at)digeo(dot)com> writes:
> I'm using the script file included with the postgresql distribution:

Hmm, is this from an RPM? It's certainly not part of what *I* consider
the Postgres distribution ...

> #all systems go -- remove any stale lock files
> rm -f /tmp/.s.PGSQL.* > /dev/null
> echo -n "$PSQL_START"
> su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl -D $PGDATA -p
> /usr/bin/postmaster start > /dev/null 2>&1" < /dev/null
> sleep 1
> pid=`pidof -s postmaster`
> if [ $pid ]
> then
> echo " [ OK ]"
> touch /var/lock/subsys/postgresql
> echo $pid > /var/run/postmaster.pid
> echo
> else
> echo " [ FAILED ]"
> echo
> fi

Since this thing is sending the postmaster's stderr output to /dev/null,
it's impossible to tell what's going wrong. Change the su line to be
something like

su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl -D $PGDATA -p /usr/bin/postmaster start >> /some/handy/logfile 2>&1" < /dev/null

and then let us know what you see in /some/handy/logfile after you get a
failure.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Martijn van Oosterhout 2001-07-19 01:55:56 Re: slow SELECT ... LIMIT query
Previous Message Richard Church 2001-07-19 01:24:13 Examples of using bytea type