新しいUbuntu 10.04サーバーをインストールし、ルートとしてログインして、apt-getを使用してhaproxyをインストールしました。
haproxyをデーモンとして直接実行できますが、/etc/init.d/haproxy start
何もしないとエラーメッセージが表示されません。
netstat -a
私はhaproxyとバランスをとろうとしているhttpポートを使用していないことを示しています...
アイデア?
編集
私
apt-get install haproxy
は最後にこれを言っていることに気付きました:update-rc.d:警告:/etc/init.d/haproxyにLSB情報がありませんupdate-rc.d:を参照 httpください
/etc/default/haproxy
言うENABLED=1
のデバッグ出力 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:~#