Server - Apache - 日志 - 简单调整日志格式
2021-04-09 15:27
标签:模式 custom 连接 config 声明 语句 logs pre 主机 很简单, 使用 组合日志模式 配置文件位置 注释 解开注释 重启 apache 配置 日志举例 格式串 结果 Server - Apache - 日志 - 简单调整日志格式 标签:模式 custom 连接 config 声明 语句 logs pre 主机 原文地址:https://www.cnblogs.com/xy14/p/12445866.html
1. 书上说
CustomLog logs/access_log combined
2. 实际
/etc/httpd/conf/httpd.conf
3. 尝试切换日志格式
CustomLog "logs/access_log" combined
CustomLog "logs/access_log" common
> apachectl graceful
4. 通用日志格式
# LogFormat "
192.168.2.158 - - [08/Mar/2020:22:27:06 +0800] "GET /hello.html HTTP/1.1" 304 -
5. 自定义
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
ps
文章标题:Server - Apache - 日志 - 简单调整日志格式
文章链接:http://soscw.com/index.php/essay/73373.html