I'm trying to configure haproxy to log to a unix socket but keep getting
alerts to stderr when the proxy is started, restarted or reloaded. Other
than these alert messages, logging to the socket seems to be working just
fine. The message is repeated about 20 times.
What am I doing wrong?
host:~# ls -alF /var/lib/haproxy/dev/log /dev/log
srw-rw-rw- 1 root root 0 Dec 29 20:01 /dev/log=
srw-rw-rw- 1 root root 0 Dec 29 20:01 /var/lib/haproxy/dev/log=
[ALERT] 362/195509 (22897) : sendto logger #0 failed: Resource temporarily
unavailable (errno=11)
global
log /dev/log local0
maxconn 5000
spread-checks 4
chroot /var/lib/haproxy
stats socket /var/lib/haproxy/stats
user haproxy
group haproxy
daemon
defaults
log global
mode http
option httplog
-Bryan