Re: [HACKERS] Frustration

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Michael Simms <grim(at)argh(dot)demon(dot)co(dot)uk>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Frustration
Date: 1999-09-24 00:57:05
Message-ID: 27209.938134625@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Michael Simms <grim(at)argh(dot)demon(dot)co(dot)uk> writes:
> Now, I know nobody can debug anything from what I have just said, but
> I cannot get a better set of bug reports. I CANT get postgres to send
> out debug

> /usr/bin/postmaster -o "-F -S 10240" -d 3 -S -N 512 -B 3000 -D/var/lib/pgsql/data -o -F > /tmp/postmasterout 2> /tmp/postmastererr

Don't use the -S switch (the second one, not the one inside -o).

Looking in postmaster.c, I see that causes it to redirect stdout/stderr
to /dev/null (probably not too hot an idea, but that's doubtless been
like that for a *long* time). Instead launch with something like

nohup postmaster switches... </dev/null >logfile 2>errfile &

Good luck figuring out where the real problem is...

regards, tom lane

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Simms 1999-09-24 01:54:39 Re: [HACKERS] Frustration
Previous Message Michael Simms 1999-09-24 00:41:59 Frustration