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

相关文章

分类

留言:

关于文章

This page contains a single entry by DongHao published on 11 5, 2009 1:57 PM.

unix精髓 was the previous entry in this blog.

lvs failover is the next entry in this blog.

Find recent content on the main index or look in the 存档 to find all content.