/usr/sbin/logrotate /etc/logrotate.conf
# logrotate -f
http://www.chinalinuxpub.com/doc/www.siliconvalleyccie.com/linux-hn/logging.htm#_Toc36811063
[后面的是强制执行一次]
root@ etc]# more logrotate.conf
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# create new (empty) log files after rotating old ones
create
# uncomment this if you want your log files compressed
#compress
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
# no packages own wtmp -- we'll rotate them here
/var/log/wtmp {
monthly
create 0664 root utmp
rotate 1
}
# system-specific logs may be also be configured here.
/var/spool/qmailscan/qmail-queue.log {
daily
rotate 10
size 15M

本文介绍了Logrotate工具的基本配置方法及参数设置,通过示例展示了如何实现日志文件的周期性轮转、压缩以及新文件的创建等操作。适用于系统管理员和运维人员了解并掌握日志管理的最佳实践。
2万+

被折叠的 条评论
为什么被折叠?



