您当前的位置:首页 > 计算机 > 服务器 > Apache

设置apache每天保存日志

时间:06-14来源:作者:点击数:

由于工作需求,需要设置apache日志按每天的方式保存,现在将具体方法分享出来,以供大家参考。

一、查找rotatelogs

rotatelogs是apache自带的日志按日期生成的模块,具体位置已自己网站rotatelogs位置为准

[root@localhost ~]# find / -name rotatelogs
/usr/sbin/rotatelogs

二、修改/etc/httpd/conf/httpd.conf配置文件

主要修改两个

#ErrorLog logs/error_log  #注释此行,添加下面这行

ErrorLog "|/usr/sbin/rotatelogs /var/log/httpd/error_log%Y%m%d.log 86400 480"

#CustomLog logs/access_log common  #注释此行,添加下面这行

CustomLog "|/usr/sbin/rotatelogs /var/log/httpd/access_log%Y%m%d.log 86400 480" common

三、重启Apache

[root@localhost ~]# systemctl restart httpd.service

四、重新访问查看效果

[root@localhost ~]# cat /var/log/httpd/
access_log    access_log20200504.log  error_log    error_log20200504.log

以上就是如何设置apache每天保存日志的详细内容,更多请关注城东书院其它相关文章!

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门