标签:模式 custom 连接 config 声明 语句 logs pre 主机
很简单, 使用 组合日志模式
CustomLog logs/access_log combined
配置文件位置
/etc/httpd/conf/httpd.conf
注释
CustomLog "logs/access_log" combined
解开注释
CustomLog "logs/access_log" common
重启 apache
> apachectl graceful
配置
# LogFormat "<format>" <alias>
LogFormat "%h %l %u %t \"%r\" %>s %b" common
日志举例
192.168.2.158 - - [08/Mar/2020:22:27:06 +0800] "GET /hello.html HTTP/1.1" 304 -
格式串
LogFormat "%t %h %A %p \"%r\" %D %X %I %O %>s" demo
结果
# 基本成功
# 具体的内容, 我就不再去解释了, 请对照官网参数, 自行查看...
[08/Mar/2020:23:04:16 +0800] 192.168.2.158 192.168.2.6 80 "GET /hello.html HTTP/1.1" 133 + 630 177 304
Server - Apache - 日志 - 简单调整日志格式
标签:模式 custom 连接 config 声明 语句 logs pre 主机
原文地址:https://www.cnblogs.com/xy14/p/12445866.html