Ich habe haproxy 1.5 via apt-get auf ubuntu 14.04 via ppa:vbernat/haproxy-1.5
per http://haproxy.debian.net/ installiert
Das Problem ist, dass es sich an /var/log/syslog
statt anmeldet/var/log/haproxy.log
Das Setup ist im Grunde die Standardeinstellung:
/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
&~
Antworten:
Sehr trickreich. :-) Und hier ist die Trickantwort:
Beachten Sie die Datei in
/etc/rsyslog.d
Es heißt, sich bei Haproxy anzumelden./var/log/haproxy.log
Dies wird jedoch nicht wirksam, ohne rsyslog neu zu starten:quelle
Die Standarddatei
haproxy.conf
enthält klare Anweisungen unter den globalen Einstellungen -global
. Hier kopiere ich es für Sie einzufügen -In meinem Fall, zum Beispiel, führe ich Haproxy in CentOS 6.6, dem gleichen Syslogd-Server, aus und musste Folgendes tun, um mich in /var/log/haproxy.log einzuloggen:
Untere Zeile zu
/etc/rsyslog.d/haproxy.conf
- hinzufügenAktivieren Sie die Syslogd-Protokollierung auf dem Server -
quelle
/etc/rsyslog.conf
. Starten Sie danach den rsyslog-Dienst neu:service rsyslog restart
Kommentieren Sie diese Zeile aus
/etc/rsyslog.d
quelle
/etc/rsyslog.d
ist ein Verzeichnis, keine Datei. Ich bin mir nicht sicher, ob es Unterschiede zwischen 1.5 und 1.6 unter Ubuntu gibt, aber die Datei/etc/rsyslog.d/49-haproxy.conf
existiert nach der Installation von 1.6. Dies hat die folgenden 3 Zeilen:$AddUnixListenSocket /var/lib/haproxy/dev/log \n if $programname startswith 'haproxy' then /var/log/haproxy.log \n &~
(Ich fügte "\ n" hinzu, um die neuen Zeilen zu kennzeichnen)Das Hauptproblem besteht darin, dass der chrooted-Haproxy nicht darauf zugreifen kann.
/dev/log
Um dieses Problem zu umgehen, haben Sie folgende Möglichkeiten :/var/lib/haproxy/dev
und hängen Sie es/dev
mit der Bindeoption an/var/lib/haproxy/dev
Es funktioniert so oder so.
[bearbeiten]
Nach 3 Jahren hat sich etwas geändert. Haproxy erstellt jetzt eine Datei mit dem Namen
/etc/rsyslog.d/49-haproxy
. Eine der Zeilen in der Datei lautet:$AddUnixListenSocket /var/lib/haproxy/dev/log
.In diesem Fall kann die Chroot-Umgebung verwenden
/dev/log
quelle
/dev/log
.