ติดตั้งเซิร์ฟเวอร์ Ubuntu 10.04 ใหม่และเข้าสู่ระบบในฐานะ root ฉันติดตั้ง haproxy โดยใช้ apt-get
ฉันสามารถเรียกใช้ haproxy โดยตรงเป็น daemon แต่เมื่อฉันไม่ทำ/etc/init.d/haproxy start
อะไรเลย .. ไม่แม้แต่จะเกิดข้อความแสดงข้อผิดพลาด
netstat -a
แสดงว่าไม่ได้ใช้พอร์ต http ฉันพยายามสร้างสมดุลให้กับ haproxy ...
ไอเดีย?
แก้ไข
ฉันสังเกตเห็นว่า
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:~#