Re: Log file retention - Mailing list pgsql-admin

From Gabriel Guillem Barceló Soteras
Subject Re: Log file retention
Date
Msg-id DU0PR08MB7921BD36FAC04AA47FE72F3FA62C2@DU0PR08MB7921.eurprd08.prod.outlook.com
Whole thread Raw
In response to Re: Log file retention  (Ron Johnson <ronljohnsonjr@gmail.com>)
Responses Re: Log file retention
List pgsql-admin

From: Ron Johnson <ronljohnsonjr@gmail.com>
Date: Tuesday, 19 March 2024 at 09:16
To: Pgsql-admin <pgsql-admin@lists.postgresql.org>
Subject: Re: Log file retention

On Tue, Mar 19, 2024 at 4:04AM Rajesh Kumar <rajeshkumar.dba09@gmail.com> wrote:

Hi,

 

How to keep log files only for 7 days

 

logrotate?  A bash script in a cron job? 

 

 

I think it is the default behaviour on default install:

 

  1. Edit the postgresql.conf File:
  2. Locate the postgresql.conf file for your PostgreSQL installation.
  3. Configure the Following Parameters:
    1. Set log_filename to server_log.%a. This will create one log file per day named server_log.Mon, server_log.Tue, etc.
    2. Enable log_truncate_on_rotation to automatically overwrite last week’s log with this week’s log.
    3. Set log_rotation_age to 1440 (minutes), which corresponds to 24 hours. This ensures that logs are rotated daily.
  4. Example Configuration:

 

log_filename = 'server_log.%a'

log_truncate_on_rotation = on

log_rotation_age = 1440

 

Still keep an eye on log_rotation_size

 

After making these changes, restart your PostgreSQL server for the new settings to take effect.

 

pgsql-admin by date:

Previous
From: Ron Johnson
Date:
Subject: Re: Log file retention
Next
From: Rajesh Kumar
Date:
Subject: Re: Log file retention