mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 08:50:36 +00:00
Update cheatsheets
This commit is contained in:
29
linux/logrotate
Normal file
29
linux/logrotate
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user