標籤:custom mon localhost oca span apache 配置 doc get orm
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 配置訪問日誌