1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

logrotate: add page (#9055)

This commit is contained in:
Brett Krueger 2022-10-30 07:10:43 -05:00 committed by GitHub
parent ef47ce96f2
commit deb48dfb2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages/linux/logrotate.md Normal file
View file

@ -0,0 +1,24 @@
# logrotate
> Rotates, compresses, and mails system logs.
> More information: <https://manned.org/logrotate>.
- Trigger a run manually:
`logrotate {{path/to/logrotate.conf}} --force`
- Run 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/null`
- Run and skip the state (lock) file check:
`logrotate {{path/to/logrotate.conf}} --skip-state-lock`
- Tell `logrotate` to log verbose output into the log file:
`logrotate {{path/to/logrotate.conf}} --log {{path/to/log_file}}`