Re: "ERROR:" Messages

From: Chris Gamache <cgg007(at)yahoo(dot)com>
To: Darren Ferguson <darren(at)crystalballinc(dot)com>, Neil Conway <nconway(at)klamath(dot)dyndns(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: "ERROR:" Messages
Date: 2002-06-11 21:27:52
Message-ID: 20020611212752.70848.qmail@web13801.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

The solution is not as sexy as the one I was hoping for... :) I'm not one to
look a gift-horse in the mouth. Thank you for your responses, which were right
on target. I imagine I can combine the debug_print_query with the logging to a
postgres.log and just do a
tail -f postgres.log | grep -B1 ERROR:
and see where I'm going wrong!

CG

--- Darren Ferguson <darren(at)crystalballinc(dot)com> wrote:
> Redirect the output to a logfile of your choice. There was a huge talk
> about this yesterday on the list.
>
> #!/bin/bash
> HOME=/usr/local/pgsql
> LOG=$HOME/logs/postgres.log
> USER=darren
>
> ulimit -SHc unlimited
> su $USER -c "nohup $HOME/bin/postmaster -D $HOME/db $@ >$LOG 2>&1
> </dev/null&"
>
> This script above is what i use to start the postmaster and as you can see
> i redirect the output to the file postgres.log. There are also different
> logging levels in the postgres.conf file that you can turn on.
>

__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Laurette Cisneros 2002-06-12 22:03:29 removing a user who owns objects
Previous Message Felipe Nascimento 2002-06-11 17:36:55 Re: Help needed

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2002-06-11 21:37:56 Re: Updates are slow..
Previous Message Tom Burke 2002-06-11 21:26:55 Re: Updates are slow..