HAProxy 配置
主要参考http://blog.chenlb.com/2009/06/install-haproxy-and-configure-load-balance.html
我的haproxy配置结果如下:
global
log 127.0.0.1 local0
#log 127.0.0.1 local1 notice
#log loghost local0 info
pidfile /tmp/haproxy.pid #pid文件
maxconn 200
ulimit-n 1024
daemon #作为daemon启动
nbproc 4 #且启动4个haproxy进程(企图把4核cpu用干净)
#debug
#quiet
defaults
log global
mode http
option httplog
option dontlognull
option forwardfor
option redispatch
retries 3
balance leastconn #负载均衡算法采用“最少链接者先处理”
stats uri /ha-st
contimeout 5000
clitimeout 50000
srvtimeout 50000
listen web_proxy1 0.0.0.0:1180 #侦听virtual server的1180端口
server app1 10.254.2.197:80 weight 3 check #第一台real server
server app2 10.254.3.142:80 weight 3 check #第二台real server
#server app3 10.254.3.143:80 weight 3 check
我的haproxy配置结果如下:
global
log 127.0.0.1 local0
#log 127.0.0.1 local1 notice
#log loghost local0 info
pidfile /tmp/haproxy.pid #pid文件
maxconn 200
ulimit-n 1024
daemon #作为daemon启动
nbproc 4 #且启动4个haproxy进程(企图把4核cpu用干净)
#debug
#quiet
defaults
log global
mode http
option httplog
option dontlognull
option forwardfor
option redispatch
retries 3
balance leastconn #负载均衡算法采用“最少链接者先处理”
stats uri /ha-st
contimeout 5000
clitimeout 50000
srvtimeout 50000
listen web_proxy1 0.0.0.0:1180 #侦听virtual server的1180端口
server app1 10.254.2.197:80 weight 3 check #第一台real server
server app2 10.254.3.142:80 weight 3 check #第二台real server
#server app3 10.254.3.143:80 weight 3 check
相关文章
- fedora 9 小集 - 01 05, 2009
- 多线程调试 - 12 17, 2008
- fedora 9 试用 - 12 05, 2008
留言: