首页 > 代码库 > Apache 配置访问日志
Apache 配置访问日志
1、在主配置文件中定义日志格式
[root@localhost ~]# 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、在虚拟主机配置文件中应用日志格式
[root@localhost ~]# 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、重新加载配置文件,访问站点并查看是否生成日志
[root@localhost ~]# /usr/local/apache2/bin/apachectl -t[root@localhost ~]# /usr/local/apache2/bin/apachectl graceful[root@localhost ~]# ls /usr/local/apache2/logs/ # 生成如下两个日志access_log error_log httpd.pid test.com_access_log test.com_error_log
Apache 配置访问日志
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。