Apache 配置访问日志
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 配置访问日志相关的知识,希望对你有一定的参考价值。
1、在主配置文件中定义日志格式
[[email protected] ~]# vim /usr/local/apache2/conf/httpd.conf
<IfModule log_config_module>
LogFormat "%h %l %u %t \\"%r\\" %>s %b \\"%{Referer}i\\" \\"%{User-Agent}i\\"" combined # 默认已定义好的日志格式,combined 是日志格式名
LogFormat "%h %l %u %t \\"%r\\" %>s %b" common # 默认已定义好的日志格式,common 是日志格式名
</IfModule>
2、在虚拟主机配置文件中应用日志格式
[[email protected] ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
DocumentRoot "/data/www"
ServerName www.test.com
ErrorLog "logs/test.com_error_log"
CustomLog "logs/test.com_access_log" combined # 这里应用 combined 格式的日志
</VirtualHost>
3、重新加载配置文件,访问站点并查看是否生成日志
[[email protected] ~]# /usr/local/apache2/bin/apachectl -t [[email protected] ~]# /usr/local/apache2/bin/apachectl graceful [[email protected] ~]# ls /usr/local/apache2/logs/ # 生成如下两个日志 access_log error_log httpd.pid test.com_access_log test.com_error_log
以上是关于Apache 配置访问日志的主要内容,如果未能解决你的问题,请参考以下文章