Re: current log file removal

From: Holger Jakobs <holger(at)jakobs(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: current log file removal
Date: 2020-11-26 14:03:29
Message-ID: a0b34226-3b66-44bd-c2da-ae0ef3b32100@jakobs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

The ordinary log rotation should do.

These are the default settings (therefore commented with a # in
postgresql.conf):

#log_rotation_age = 1d                  # Automatic rotation of logfiles
will
                                        # happen after that time.  0
disables.
#log_rotation_size = 10MB               # Automatic rotation of logfiles
will
                                        # happen after that much log
output.
                                        # 0 disables.

So your log files will not exceed 10 MB.

Of course, you can to this manually as well. Just rename the current
logfile,  a new one will be created.

Then gzip or bzip2 or xz the old one.

Am 26.11.20 um 14:40 schrieb Yambu:
> Hi
>
> How can I safely remove the log file that is being used currently and
> zip it without interfering with the postgres server?
>
> We are running out of space on the server and the logs are eating a
> lot of space, we need to zip them without first stopping the server.
>
> regards

--
Holger Jakobs, Bergisch Gladbach, Tel. +49-178-9759012

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Paul Förster 2020-11-26 14:05:26 Re: Move base directory to different location
Previous Message Holger Jakobs 2020-11-26 14:00:28 Re: Move base directory to different location