snippetbashTip
logrotate — Rotates, compresses, and mails system logs. More information: <https://manned.org/logrotate>.
Viewed 0 times
rotatescommandandlogrotatemailsclicompressessystem
linux
Problem
How to use the
logrotate command: Rotates, compresses, and mails system logs. More information: <https://manned.org/logrotate>.Solution
logrotate — Rotates, compresses, and mails system logs. More information: <https://manned.org/logrotate>.Trigger a run manually:
logrotate {{path/to/logrotate.conf}} --forceRun using a specific command to mail reports:
logrotate {{path/to/logrotate.conf}} --mail {{/usr/bin/mail_command}}Run without using a state (lock) file:
logrotate {{path/to/logrotate.conf}} --state /dev/nullRun and skip the state (lock) file check:
logrotate {{path/to/logrotate.conf}} --skip-state-lockTell
logrotate to log verbose output into the log file:logrotate {{path/to/logrotate.conf}} --log {{path/to/log_file}}Code Snippets
Trigger a run manually
logrotate {{path/to/logrotate.conf}} --forceRun using a specific command to mail reports
logrotate {{path/to/logrotate.conf}} --mail {{/usr/bin/mail_command}}Run without using a state (lock) file
logrotate {{path/to/logrotate.conf}} --state /dev/nullRun and skip the state (lock) file check
logrotate {{path/to/logrotate.conf}} --skip-state-lockTell `logrotate` to log verbose output into the log file
logrotate {{path/to/logrotate.conf}} --log {{path/to/log_file}}Context
tldr-pages: linux/logrotate
Revisions (0)
No revisions yet.