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
时间: 2024-10-29 03:12:53