Install Haproxy Keppalived on CentOS 6.5

來源:互聯網
上載者:User

標籤:haproxy keepalived


Haproxy/Keepalived Server1: 192.168.1.253
Haproxy/Keepalived Server2: 192.168.1.254
Haproxy/Keepalived VIP: 192.168.1.250


Haproxy/Keepalived Server1:

1. echo "net.ipv4.ip_nonlocal_bind = 1" >> /etc/sysctl.conf
sysctl -p

yum -y install keepalived haproxy

2. cp /etc/keepalived/keepalived.conf /etc/keepalived/keepalived.bak
vi /etc/keepalived/keepalived.conf
global_defs {
   notification_email {
     [email protected]
     [email protected]
     [email protected]
   }
   notification_email_from [email protected]
   smtp_server 192.168.200.1
   smtp_connect_timeout 30
   router_id centos65-2
}

vrrp_instance VI_1 {
    state MASTER
    interface eth0
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.1.250
    }
}
下面的都刪除

1). Priority value will be higher on Master server
2). virtual_router_id should be same on both servers
3). By default single vrrp_instance support up to 20 virtual_ipaddress

3. service keepalived start; chkconfig keepalived on
ip addr show eth0


4. vi /etc/haproxy/haproxy.cfg
注釋原有的frontend和backend
frontend web 192.168.1.250:8080
        default_backend web

listen stats 192.168.1.253:8080
        mode http
        stats enable
        stats uri /

backend web
        balance leastconn
        server web01 192.168.1.253:80 check
        server web02 192.168.1.254:80 check

service haproxy start; chkconfig haproxy on


Haproxy/Keepalived Server2:

1. echo "net.ipv4.ip_nonlocal_bind = 1" >> /etc/sysctl.conf
sysctl -p

yum -y install keepalived haproxy

2. cp /etc/keepalived/keepalived.conf /etc/keepalived/keepalived.bak
vi /etc/keepalived/keepalived.conf
global_defs {
   notification_email {
     [email protected]
     [email protected]
     [email protected]
   }
   notification_email_from [email protected]
   smtp_server 192.168.200.1
   smtp_connect_timeout 30
   router_id centos65
}

vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 51
    priority 90
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.1.250
    }
}
下面的都刪除


3. service keepalived start; chkconfig keepalived on
ip addr show eth0


4. vi /etc/haproxy/haproxy.cfg
注釋原有的frontend和backend
frontend web 192.168.1.250:8080
        default_backend web

listen stats 192.168.1.254:8080
        mode http
        stats enable
        stats uri /

backend web
        balance leastconn
        server web01 192.168.1.253:80 check
        server web02 192.168.1.254:80 check

service haproxy start; chkconfig haproxy on


本文出自 “Ilovecat(個人筆記)” 部落格,請務必保留此出處http://hj192837.blog.51cto.com/655995/1546076

Install Haproxy Keppalived on CentOS 6.5

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.