Zainstalowałem nowy serwer Ubuntu 10.04 i logując się jako root Zainstalowałem haproxy za pomocą apt-get.
Mogę uruchamiać haproxy bezpośrednio jako demon, ale kiedy /etc/init.d/haproxy start
nic nie robię , nawet nie pojawia się komunikat o błędzie.
netstat -a
pokazuje, że nic nie używa portu http, który próbuję zrównoważyć z haproxy ...
Pomysły?
Edytować
Zauważyłem,
apt-get install haproxy
że w końcu to mówi:update-rc.d: ostrzeżenie: /etc/init.d/haproxy brak informacji o LSB update-rc.d: patrz http://wiki.debian.org/LSBInitScripts
/etc/default/haproxy
mówiENABLED=1
Wyjście debugujące dla 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:~#