apache日志问题

发布于 2022-07-20 05:41:10 字数 347 浏览 12 评论 2

我在apache配置里配置了VirtualHost
也配置了日志

  1. CustomLog "|/usr/local/sbin/cronolog /var/log/httpd/%Y-%m-%d/wap_access_log" service

复制代码

  1. CustomLog logs/wap_access_log common

复制代码
都是过了
但是日志总是只显示common或是service
不显示实际的日志内容

我在其他机子上这么配置都能显示,请问应该如何解决
谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

濫情▎り 2022-07-27 08:19:12

这是整个的日志定义语句,请大家看看

  1. <IfModule log_config_module>
  2.     #
  3.     # The following directives define some format nicknames for use with
  4.     # a CustomLog directive (see below).
  5.     #
  6.     LogFormat   "%h     %{%F    %T}t    "%r"  %>s     %b      "%{Referer}i" "%{User-Agent}i""     webwap
  7.     LogFormat   "#####  %h      %{%F    %T}t    "%r"  %>s     %b      "%{Referer}i" UA:%{User-Agent}i       Host:%{Host}i   Content-Length:%{Content-Length}i       X-Online-Host:%{X-Online-Host}i Via:%{Via}i     Connection:%{Connection}i       X-Network-info:%{X-Network-info}i       X-Forwarded-For:%{X-Forwarded-For}i     X-Nokia-gateway-id:%{X-Nokia-gateway-id}i       x-source-id:%{x-source-id}i     Cost:%T"        service
  8.     LogFormat   "%{Referer}i -> %U"     referer
  9.     LogFormat   "%{User-agent}i"        agent
  10.     LogFormat   "%h     %l      %u      %t      "%r"  %>s     %b      "%{Referer}i" "%{User-Agent}i"" combined
  11.     LogFormat   "%h     %l      %u      %t      "%r"  %>s     %b"     common
  12.     <IfModule logio_module>
  13.       # You need to enable mod_logio.c to use %I and %O
  14.       LogFormat "%h     %l      %u      %t      "%r"  %>s     %b      "%{Referer}i" "%{User-Agent}i"      %I      %O"     combinedio
  15.     </IfModule>
  16.     #
  17.     # The location and format of the access logfile (Common Logfile Format).
  18.     # If you do not define any access logfiles within a <VirtualHost>
  19.     # container, they will be logged here.  Contrariwise, if you *do*
  20.     # define per-<VirtualHost> access logfiles, transactions will be
  21.     # logged therein and *not* in this file.
  22.     #
  23.     CustomLog logs/access_log common
  24. #CustomLog "|/usr/local/sbin/cronolog /var/log/httpd/%Y-%m-%d/other_access_log" service
  25.     #
  26.     # If you prefer a logfile with access, agent, and referer information
  27.     # (Combined Logfile Format) you can use the following directive.
  28.     #
  29.     #CustomLog logs/access_log combined
  30. </IfModule>

复制代码

友谊不毕业 2022-07-27 06:27:06

common或是service
在LogFormat里是怎么定义的?贴出来看看

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文