I happened to check the haproxy logs today on our load balancer and I'm
seeing a ton of weird logs showing
localhost.localdomain haproxy[18309]: 127.0.0.1:41386[04/Apr/2012:21:03:31.942]
example.com example.com/example-server 0/0/25 238 -- 0/0/0/0/0 0/0
The port number for 127.0.0.1 seems to change randomly within a pretty
small range in every time the above error is logged.
Here's my haproxy.cfg file:
global
log 127.0.0.1 local0 info
maxconn 20000
user haproxy
stats socket /tmp/haproxy.socket uid haproxy mode 770 level admin
daemon
defaults
log global
mode tcp
option tcplog
option dontlognull
retries 3
option redispatch
maxconn 15000
timeout connect 5s
timeout client 120s
timeout server 120s
listen example.com 127.0.0.1:81
mode http
balance roundrobin
option httpclose
option forwardfor
server example-server 10.20.20.1:80 check
listen private_monitoring :8100
mode http
option httplog
stats enable
stats uri /stats
stats refresh 5s
stats auth xxxxx:xxxxxxxxx
Does anyone have any idea what the problem is here?
Thanks,
Guy