Haproxy 폴링 서버 세트

1192 단어 Haproxy서버 세트

Haproxy 클러스터

Haproxy , 。

Haproxy 클러스터 구축

#yum -y install haproxy

1) 모니터링 포트 서비스

[haproxy:50]
#vim /etc/haproxy/haproxy.cfg
frontend      
frontend  web *:80
  default_backend   app
backend   
backend     app
    backend roundrobin
    server   app1 192.168.4.53:80 check
    server   app1 192.168.4.52:80 check
  #service haproxy start
  #elinks --dump http://192.168.4.50

2) 서로 다른 웹 페이지를 대상으로 서로 다른 서버 집합에 전송

  frontend  web *:80
       acl url_html       path_end       -i .html     , url , .html   , url_html
       use_backend html_group          if url_html    url_html , html_group  
       acl url_php       path_end       -i .php
       use_backend php_group          if url_php
       default_backend             html_group
  backend html_group
        balance     roundrobin
        server  web51 192.168.4.51:80 check
        server  web52 192.168.4.52:80 check
      backend php_group
        balance     roundrobin
        server  web53 192.168.4.53:80 check
        server  web54 192.168.4.54:80 check
         url html php 

좋은 웹페이지 즐겨찾기