Ask Your Question
2

How can logrotate be configured to use files prefixed with timestamps by default?

asked 2021-06-21 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-02-08 02:00:00 +0000

lakamha gravatar image

To configure logrotate to use files prefixed with timestamps by default, follow these steps:

  1. Open the logrotate configuration file for the desired log file. This file is usually located at /etc/logrotate.conf or /etc/logrotate.d/.

  2. In the configuration file, add the following line:

dateext

This line tells logrotate to use files with timestamps.

  1. Optionally, you can also add the following lines to configure the date format for the timestamps:

dateformat %Y-%m-%d.%s

This line sets the format to year-month-day.seconds.

  1. Save and close the configuration file.

From now on, logrotate will use file names with timestamps for the log files specified in the configuration file. For example, if the log file is called /var/log/nginx/access.log, the rotated files will be named /var/log/nginx/access.log.2021-01-01.123456, /var/log/nginx/access.log.2021-01-02.123456, etc.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-06-21 11:00:00 +0000

Seen: 11 times

Last updated: Feb 08 '23