Muito complicado. :-) E aqui está a resposta:
Observe o arquivo em /etc/rsyslog.d
Ele diz para registrar haproxy em /var/log/haproxy.log
Mas isso não terá efeito sem reiniciar o rsyslog:
service rsyslog restart
Eu instalei o haproxy 1.5 através do apt-get no Ubuntu 14.04 via ppa:vbernat/haproxy-1.5
de acordo com o link
O problema é que ele está registrando em /var/log/syslog
em vez de /var/log/haproxy.log
A configuração é basicamente o padrão:
/etc/haproxy/haproxy.cfg
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# Default ciphers to use on SSL-enabled listening sockets.
# For more information, see ciphers(1SSL).
ssl-default-bind-ciphers kEECDH+aRSA+AES:kRSA+AES:+AES256:RC4-SHA:!kEDH:!LOW:!EXP:!MD5:!aNULL:!eNULL
ssl-default-bind-options no-sslv3
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
/etc/rsyslog.d
# Create an additional socket in haproxy's chroot in order to allow logging via
# /dev/log to chroot'ed HAProxy processes
$AddUnixListenSocket /var/lib/haproxy/dev/log
# Send HAProxy messages to a dedicated logfile
if $programname startswith 'haproxy' then /var/log/haproxy.log
&~
Muito complicado. :-) E aqui está a resposta:
Observe o arquivo em /etc/rsyslog.d
Ele diz para registrar haproxy em /var/log/haproxy.log
Mas isso não terá efeito sem reiniciar o rsyslog:
service rsyslog restart
O arquivo haproxy.conf
padrão fornece instruções claras nas configurações globais - global
. Aqui estou copiar colando para você -
#--------------------------------------------------------------------- # Global settings #--------------------------------------------------------------------- global # to have these messages end up in /var/log/haproxy.log you will # need to: # # 1) configure syslog to accept network log events. This is done # by adding the '-r' option to the SYSLOGD_OPTIONS in # /etc/sysconfig/syslog # # 2) configure local2 events to go to the /var/log/haproxy.log # file. A line like the following can be added to # /etc/sysconfig/syslog # #
No meu caso, por exemplo, estou executando o haproxy no CentOS 6.6, o mesmo servidor syslogd e tive que fazer o seguinte para logar em /var/log/haproxy.log:
Adicione a linha abaixo a /etc/rsyslog.d/haproxy.conf
-
local2.* /var/log/haproxy.log
Ativar o registro do syslogd no servidor -
# Provides UDP syslog reception $ModLoad imudp $UDPServerRun 514 $UDPServerAddress 127.0.0.1
Comente esta linha de /etc/rsyslog.d
# Send HAProxy messages to a dedicated logfile
if $programname startswith 'haproxy' then /var/log/haproxy.log
o problema principal é que o haproxy com chroot não poderá acessar /dev/log
e, para contornar o problema, você pode:
/var/lib/haproxy/dev
e monte /dev
com opção de vinculação em /var/lib/haproxy/dev
Funciona de qualquer maneira.