Re: rotating log files - Mailing list pgsql-general

From Peter Eisentraut
Subject Re: rotating log files
Date
Msg-id Pine.LNX.4.30.0104271713530.758-100000@peter.localdomain
Whole thread Raw
In response to rotating log files  (Jelle Ouwerkerk <jelle@openface.ca>)
List pgsql-general
Jelle Ouwerkerk writes:

> I'm running 'Linux 2.2.16-22smp #1 SMP i686 unknown' and a solution that
> was proposed to me was to use cron and a program called logrotate:

> Unfortunately, after replacing/rotating/compressing the database log file,
> the new log file remains empty. I have a feeling that postgres has lost
> the reference to the original log file and that the new log data is lost
> into the void.

The logrotate program just moves the log file to a different name, but the
PostgreSQL server has the file open so it just keeps writing to the same
file no matter what name it has.  What you need to do is pipe the log
output through a separate program that closes and reopens the file once in
a while.  Apache has such a program, for example.

--
Peter Eisentraut   peter_e@gmx.net   http://funkturm.homeip.net/~peter


pgsql-general by date:

Previous
From: "Len Morgan"
Date:
Subject: Re: SQL Where Like - Range it?!
Next
From: Peter Eisentraut
Date:
Subject: Re: creating constants in postgres