새로운 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://wiki.debian.org/LSBInitScripts 참조
/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:~#