Apache日志提供有助于檢測(cè)服務(wù)器常見(jiàn)問(wèn)題的詳細(xì)信息。要記錄網(wǎng)站的訪問(wèn)日志,必須啟用mod_log_configmodule。
apache配置文件中有三個(gè)指令,即 -
TransferLog指令在apache配置文件中可用,它根據(jù)設(shè)置參數(shù)輪轉(zhuǎn)虛擬主機(jī)日志文件。
<VirtualHost www.example.com> ServerAdmin webmaster@yiibai.com DocumentRoot /usr/www/example/httpd/htdocs/ ServerName www.example.com ServerAlias example.com www.example ErrorLog /usr/www/example/httpd/logs/error_log TransferLog /usr/www/example/httpd/logs/accesslog CustomLog /usr/www/example/httpd/logs/accesslog combined </VirtualHost>
Shell
可以通過(guò)編輯apache配置文件來(lái)啟用它們,即apache2.conf(Debian/ubuntu)或httpd.conf(基于rpm的系統(tǒng))文件。
通用日志格式
LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog logs/access_log.log common
Shell
Apache生成的通用日志內(nèi)容示例如下 -
[Wed Oct 11 14:32:52 2000] [error] [client 127.0.0.1] client denied by server configuration: /export/home/live/ap/htdocs/test
Shell
組合日志格式
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined CustomLog log/access_log.log combined
Shell
在上面格式中,
用戶代理是瀏覽器標(biāo)識(shí)字符串。
Apache生成的組合日志:
199.180.11.91 - - [06/Mar/2019:04:22:58 +0100] "GET /robots.txt HTTP/1.1" 404 1228 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)"
Shell
自定義日志為服務(wù)器上的每個(gè)虛擬主機(jī)創(chuàng)建單獨(dú)的日志文件。它需要在配置文件的虛擬主機(jī)部分中指定。
可以看到下面提到的虛擬主機(jī)配置,生成的日志將為該虛擬主機(jī)自定義,并且將組合格式。
更多建議: