先把配置文件放上来- -后面再解释

  1. #######################################################  
  2.  global 
  3.      maxconn  5000  
  4.      chroot   /usr/local/haproxy  
  5.      uid      505  
  6.      gid      505  
  7.      daemon  
  8.      quiet  
  9.      nbproc   2  
  10.      pidfile  /usr/local/haproxy/haproxy.pid  
  11.  ########################################################  
  12.    
  13. defaults  
  14.      log     global 
  15.      log     127.0.0.1  local3   
  16.      mode    http  
  17.      option  httpog  
  18.      option  dontlognull  
  19.      option  redispatch  
  20.      retries 3  
  21.    
  22.      maxconn 5000  
  23.      contimeout 5000  
  24.      clitimeout 50000  
  25.      srvtimeout 50000  
  26.  ##########################################################  
  27.    
  28. listen web 192.168.0.53:80  
  29.      mode    http  
  30. #     mode    tcp  
  31.      balance roundrobin  
  32.      option  forwardfor  
  33.      option  httpclose  
  34. #     option  forceclose  
  35.      option  redispatch  
  36.      option  httpchk GET /test.jsp  
  37.      server CmIS01 192.168.0.57:8080 cookie 1 check inter 5000 fall 3 rise 2 weight 1  
  38.      server CmIS02 192.168.0.58:8080 cookie 2 check inter 5000 fall 3 rise 2 weight 1  
  39.  ##########################################################  
  40.    
  41. listen status 192.168.0.53:8888  
  42.      stats enable  
  43.      stats uri /admin  
  44.      stats auth admin:admin   
  45.     stats realm Haproxy \ statistic