码迷,mamicode.com
首页 > 其他好文 > 详细

HAProxy日志开启

时间:2021-05-24 03:50:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:sys   host   https   rest   emctl   mct   tail   global   rom   

安装完haproxy后默认是没有启用日志的,如果需要日志配置,那么需要结合rsyslog

修改haproxy配置

在全局配置段中配置,定义日志记录级别。

global
    log 127.0.0.1 local3  info

 

修改rsyslog配置

#日志传输基于udp,所以需要取消这两行的注释。
[root@LB ~]# sed -n ‘21,22p‘ /etc/rsyslog.conf
$ModLoad imudp
$UDPServerRun 514

#文件末尾添加
local3.*			/var/log/haproxy.log

 

[root@LB ~]# systemctl restart haproxy rsyslog

 

没什么问题后访问一下就会在/var/log/haproxy.log中看到日志

[root@LB ~]# tail -f /var/log/haproxy.log
May 10 07:00:15 localhost haproxy[1760]: Connect from 192.168.248.1:62485 to 192.168.248.200:443 (https/TCP)
May 10 07:00:15 localhost haproxy[1760]: Connect from 192.168.248.1:62486 to 192.168.248.200:443 (https/TCP)
May 10 07:00:20 localhost haproxy[1760]: Connect from 192.168.248.1:62490 to 192.168.248.200:443 (https/TCP)
May 10 07:00:20 localhost haproxy[1760]: Connect from 192.168.248.1:62491 to 192.168.248.200:443 (https/TCP)
May 10 07:00:24 localhost haproxy[1760]: Connect from 192.168.248.1:62495 to 192.168.248.200:443 (https/TCP)

 

HAProxy日志开启

标签:sys   host   https   rest   emctl   mct   tail   global   rom   

原文地址:https://www.cnblogs.com/diqiyao/p/14749274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!