logrotate

本文深入探讨了Linux环境下日志管理工具logrotate的使用方法及配置技巧,包括其默认配置文件、关键参数解释以及如何通过自定义配置实现更精细化的日志管理。了解如何设置日志轮转、压缩、保留周期等特性,提升系统日志维护效率。
摘要由CSDN通过智能技术生成

linux中可以使用logrotate 用来进行日志的管理


logrotate的默认配置文件为 /etc/logrotate.conf 

# see "man logrotate" for details
# rotate log files weekly
weekly

# keep 9 weeks worth of backlogs
rotate 9

# create new (empty) log files after rotating old ones
create

# use date as a suffix of the rotated file
dateext

# 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 and btmp -- we'll rotate them here
/var/log/wtmp {
    monthly
    create 0664 root utmp
        minsize 1M
    rotate 9
}

/var/log/btmp {
    missingok
    monthly
    create 0600 root utmp
    rotate 9
}

# system-specific logs may be also be configured here.

注意到其中有一个 include,它包含了/etc/logrotate.d/目录

所以可以将自定义配置放入到该目录下

当系统(使用crontab)或者手动调用logrotate /etc/logrotate.conf 时候,会自动调用/etc/logrotate.d/目录下的所有配置文件,同时,该目录中的配置文件会继承到/etc/logrotate.conf 中的全局参数


而手动调用 logrotate /etc/logrotate.d/XXX 的时候, XXX并不能继承到 /etc/logrotate.conf 中定义的全局变量

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值