Apache配置实现日志按天分割并删除指定几天前
发布网友
发布时间:2022-04-12 20:21
我来回答
共1个回答
热心网友
时间:2022-04-12 21:50
配置文件修改:
+ View Code
下面对两条配置命令做一下说明:
ErrorLog "| /usr/sbin/rotatelogs /var/log/httpd/error_log-%Y%m%d 86400 480"CustomLog "| /usr/sbin/rotatelogs /var/log/httpd/access_log-%Y%m%d 86400 480" common
使用命令rotatelogs 对日志进行切割,查找该命令的位置使用:which rotatelogs
指定日志文件的位置和名称/var/log/httpd/error_log-%Y%m%d
指定分割时间:86400 默认单位为s。也就是24小时
指定分区时差:480 默认单位m,也就是8小时