Installierte einen neuen Ubuntu 10.04 Server und loggte sich als root ein. Ich installierte haproxy mit apt-get.
Ich kann haproxy direkt als Daemon ausführen, aber wenn ich /etc/init.d/haproxy start
nichts tue , passiert nicht einmal eine Fehlermeldung.
netstat -a
zeigt an, dass nichts den http-Port verwendet, den ich mit haproxy ausgleichen möchte ...
Ideen?
Bearbeiten
Mir ist aufgefallen,
apt-get install haproxy
dass dies am Ende sagt:update-rc.d: Warnung: /etc/init.d/haproxy fehlende LSB-Informationen. update-rc.d: Siehe http://wiki.debian.org/LSBInitScripts
/etc/default/haproxy
sagtENABLED=1
Debugging-Ausgabe für sh -xv /etc/init.d/haproxy start
#!/bin/sh
#
# chkconfig: - 85 15
# description: HA-Proxy is a TCP/HTTP reverse proxy which is particularly suited \
# for high availability environments.
# processname: haproxy
# config: /etc/haproxy.cfg
# pidfile: /var/run/haproxy.pid
# Source function library.
if [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ] ; then
. /etc/rc.d/init.d/functions
else
exit 0
fi
+ [ -f /etc/init.d/functions ]
+ [ -f /etc/rc.d/init.d/functions ]
+ exit 0
root@li267-63:~#