apache 服务器日志格式更改

apache 服务器日志格式更改

我编辑了 httpd.conf 来更改我的 Windows 机器上的 apache 2.4 的日志格式

具体来说,我编辑并做了以下更改:

#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
#LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat " %l %u %{%d/%b/%Y %T}t.%{msec_frac}t %{%z}t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat " %l %u %{%d/%b/%Y %T}t.%{msec_frac}t %{%z}t \"%r\" %>s %b" common

<IfModule logio_module>
  # You need to enable mod_logio.c to use %I and %O
  #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  LogFormat " %l %u %{%d/%b/%Y %T}t.%{msec_frac}t %{%z}t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>

#CustomLog "logs/access.log" common
CustomLog "logs/access.log" combined

但我仍然没有看到我的 access.log 格式有任何变化。

它们表现为

192.168.1.1 - - [03/Oct/2014:11:46:21 +0200] "GET /videos/ HTTP/1.1" 304 -

谁能告诉我如何正确配置它。

答案1

在 Windows 中,你必须卸载服务,例如

httpd.exe -k uninstall 

httpd.exe -k install 

然后重新加载配置。

相关内容