From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Cyril VELTER <cyril(dot)velter(at)libertysurf(dot)fr>, Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: pg_ctl problem (was Re: BeOS Patch) |
Date: | 2001-03-18 17:29:21 |
Message-ID: | 200103181729.MAA10048@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
At a minimum, you should do a test, and if it does not yet exist, do a
sleep, then the test again.
> Cyril VELTER <cyril(dot)velter(at)libertysurf(dot)fr> writes:
> > pg_ctl output when no shm segments left
>
> > pg_ctl: It seems another postmaster is running. Trying to start postmaster
> > anyway.
> > pg_ctl: cannot start postmaster <-------- not true !!!
> > Examine the log output.
> > DEBUG: database system was interrupted at 2001-03-18 12:01:57 CET
> > DEBUG: CheckPoint record at (0, 20204684)
> > DEBUG: Redo record at (0, 20204684); Undo record at (0, 0); Shutdown TRUE
> > DEBUG: NextTransactionId: 5384; NextOid: 153313
> > DEBUG: database system was not properly shut down; automatic recovery in
> > progress...
> > DEBUG: ReadRecord: record with zero len at (0, 20204748)
> > DEBUG: redo is not required
> > DEBUG: database system is in production state
>
> Looking at the pg_ctl script, it seems this must be coming from
>
> eval '$po_path' '$POSTOPTS' $logopt '&'
>
> if [ -f $PIDFILE ];then
> if [ "`sed -n 1p $PIDFILE`" = "$pid" ];then
> echo "$CMDNAME: cannot start postmaster" 1>&2
> echo "Examine the log output." 1>&2
> exit 1
> fi
> fi
>
> which is clearly not giving the postmaster enough time to remove or
> rewrite the pidfile. Shouldn't we put a "sleep 1" in there before
> the "if"?
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Eisentraut | 2001-03-18 19:22:31 | Re: pg_ctl problem (was Re: BeOS Patch) |
Previous Message | Tom Lane | 2001-03-18 17:11:54 | pg_ctl problem (was Re: BeOS Patch) |