Keepalived Httpd的简单高可用搭建及设定sorry_server

环境:

K1:192.168.11.26

K2:192.168.11.28

R1:192.168.11.21

R2:192.168.11.30

VIP:192.168.11.99

一、K1配置

[[email protected] ~]# cd /etc/keepalived/                    
[[email protected] keepalived]# cat keepalived.conf    #查看配置文件
! Configuration File for keepalived

global_defs {                                #定义全局信息
   notification_email {
	[email protected]
   }
   notification_email_from [email protected]        #定义发送者邮箱,这里随意填
   smtp_server 127.0.0.1
   smtp_connect_timeout 30                    #连接超时30秒
   router_id LVS_DEVEL                        #定义id,我们使用默认就好
  # vrrp_mcast_group4 224.0.100.18            #定义组播地址,建议最好使用
}

vrrp_instance VI_1 {                        #定义虚拟路由地址
    state MASTER                            #我们K1为MASTER
    interface eth0                          #在那口网卡,Centos 7 是enoxxxx
    virtual_router_id 51                    #虚拟路由ID,必须一样主从
    priority 100                            #优先级
    advert_int 1                            #默认1秒就好,
    authentication {                        #认真
        auth_type PASS                      #keepalived只支持俩中认证,这里使用第二种简单密码认证,也就是预认证
        auth_pass 6Nb6zjWB                  #使用openssh rant -base64 6 获取随机密码,最长支持八位所以也就是后面使用6的原因
    }
    virtual_ipaddress {                     #定义虚拟IP地址
	192.168.11.17
    }
	notify_master "/etc/keepalived/notify.sh master"    #我们直接写的脚本通知
	notify_backup "/etc/keepalived/notify.sh backup"
	notify_fault "/etc/keepalived/notify.sh fault"
}

virtual_server 192.168.11.17 80 {            #定义keepalived集群VIP地址
    delay_loop 6                             #检查周期6秒
    lb_algo rr                               #调度算法
    lb_kind DR                               #调度模型
    protocol TCP                             #只支持TCP,所以想想就好
    sorry_server 127.0.0.1 80                #用于集群挂掉了,提示的友好界面,比如提示:服务器正在维护等等友好信息...

    real_server 192.168.11.30 80 {           #定义R1
        weight 1                             #权重,我们是rr调度,权重可以忽略
        HTTP_GET {                           #这里我们使用的HTTP 80端口
            url {                            #定义要请求的url地址
              path /                         #请求地址为/ ,也就是/indexx.html或者index.php等等
              status_code 200                #返回状态码为200表示OK
            }
            connect_timeout 3                #连接超时时长,3秒
            nb_get_retry 3                   #重试3次
            delay_before_retry 3             #每次重试的时间间隔3秒
        }                                
    }
   real_server 192.168.11.21 80 {            #定义R2
        weight 1                             #权重
        HTTP_GET {                           #这里我们使用的HTTP 80端口
            url {                            #定义要请求的url地址
              path /                         #请求地址为/ ,也就是/indexx.html或者index.php等等
              status_code 200                #返回状态码为200表示OK
            }
            connect_timeout 3                #连接超时时长,3秒
            nb_get_retry 3                   #重试3次
            delay_before_retry 3             #每次重试的时间间隔3秒
        }
    }

}

二、K2配置

[[email protected] keepalived]# cat keepalived.conf 
! Configuration File for keepalived

global_defs {
   notification_email {
	[email protected]
   }
   notification_email_from [email protected]
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id LVS_DEVEL
  # vrrp_mcast_group4 224.0.100.18
}

vrrp_instance VI_1 {
    state BACKUP                                            #这里不同,是BACKUP
    interface eth0
    virtual_router_id 51
    priority 98                                             #这里不同,优先级是98,下面其他都一样
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 6Nb6zjWB
    }
    virtual_ipaddress {
	192.168.11.17
    }
	notify_master "/etc/keepalived/notify.sh master"
	notify_backup "/etc/keepalived/notify.sh backup"
	notify_fault "/etc/keepalived/notify.sh fault"
}

virtual_server 192.168.11.17 80 {
    delay_loop 6
    lb_algo rr
    lb_kind DR
    protocol TCP
    sorry_server 127.0.0.1 80

    real_server 192.168.11.30 80 {
        weight 1
        HTTP_GET {
            url {
              path /
              status_code 200
            }
            connect_timeout 3
            nb_get_retry 3
            delay_before_retry 3
        }
    }
   real_server 192.168.11.21 80 {
        weight 1
        HTTP_GET {
            url {
              path /
              status_code 200
            }
            connect_timeout 3
            nb_get_retry 3
            delay_before_retry 3
        }
    }

}

三、R2配置

[[email protected] ~]# cat skp.sh                                                     #查看脚本内容
#!/bin/bash
#
vip=192.168.11.17
case $1 in
start)
echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore
echo 1 > /proc/sys/net/ipv4/conf/lo/arp_ignore
echo 2 > /proc/sys/net/ipv4/conf/all/arp_announce
echo 2 > /proc/sys/net/ipv4/conf/lo/arp_announce
ifconfig lo:0 $vip netmask 255.255.255.255 broadcast $vip
route add -host $vip dev lo:0
;;
stop)
echo 0 > /proc/sys/net/ipv4/conf/all/arp_ignore
echo 0 > /proc/sys/net/ipv4/conf/lo/arp_ignore
echo 0 > /proc/sys/net/ipv4/conf/all/arp_announce
echo 0 > /proc/sys/net/ipv4/conf/lo/arp_announce
ifconfig lo:0 del $vip
;;
esac
[[email protected] ~]# sh skp.sh start                                                #执行脚本,记得传参进去start
[[email protected] ~]# ip add sh                                                      #查看,配置成功:inet 192.168.11.17/32 brd 192.168.11.17 scope global lo:0
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet 192.168.11.17/32 brd 192.168.11.17 scope global lo:0
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eno16780032: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:0c:29:c8:1b:d5 brd ff:ff:ff:ff:ff:ff
    inet 192.168.11.30/24 brd 192.168.11.255 scope global eno16780032
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:fec8:1bd5/64 scope link 
       valid_lft forever preferred_lft forever
[[email protected] ~]# yum install httpd -y                                           #安装httpd服务
[[email protected] ~]# cat /var/www/html/index.html                                   #标记index.html内容,以做区别,在生产机千万要别这样区别,不然用户会迷茫的!~
<h1>===30===</h1>
[[email protected] ~]# systemctl start httpd                                          #启动httpd服务,这台是Centos 7 启动方式可能有所不同

四、R1配置

[[email protected] ~]# yum install httpd -y                                           #安装httpd服务
[[email protected] ~]# sh skp.sh start                                                #执行脚本,记得传参进去
[[email protected] ~]# ip add sh                                                      #查看,配置成功:inet 192.168.11.17/32 brd 192.168.11.17 scope global lo:0
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet 192.168.11.17/32 brd 192.168.11.17 scope global lo:0
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:4e:ce:b9 brd ff:ff:ff:ff:ff:ff
    inet 192.168.11.21/24 brd 192.168.11.255 scope global eth0
    inet6 fe80::20c:29ff:fe4e:ceb9/64 scope link 
       valid_lft forever preferred_lft forever
[[email protected] ~]# cat /var/www/html/index.html                                   #标记index.html内容,以做区别,在生产机千万要别这样区别,不然用户会迷茫的!~
<h1>===21===</h1>
[[email protected] ~]# service httpd start                                            #启动服务,这是Centos 6 很熟悉吧 ^-^

五、在K2启动,这台是初始是BACKUP优先级是98

[[email protected] keepalived]# service keepalived start                #启动keepalived,提示OK启动成功
Starting keepalived:                                       [  OK  ]
[[email protected] keepalived]# ipvsadm -Ln                      #查看是否成功,发现是OK的
IP Virtual Server version 1.2.1 (size=4096)
Prot LocalAddress:Port Scheduler Flags
  -> RemoteAddress:Port           Forward Weight ActiveConn InActConn
TCP  192.168.11.17:80 rr
  -> 192.168.11.21:80             Route   1      0          0         
  -> 192.168.11.30:80             Route   1      0          0 
[[email protected] ~]# tail -f /var/log/messages                   #这是在启动前,在另外的一个session执行的命令,有兴趣可以看看哦,后面就示例啦                   
Oct 21 22:58:34 redis_master Keepalived[22646]: Starting Keepalived v1.2.13 (03/19,2015)
Oct 21 22:58:34 redis_master Keepalived[22647]: Starting Healthcheck child process, pid=22648
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Netlink reflector reports IP 192.168.11.28 added
Oct 21 22:58:34 redis_master Keepalived[22647]: Starting VRRP child process, pid=22649
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Netlink reflector reports IP fe80::20c:29ff:fe2d:bab0 added
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Registering Kernel netlink reflector
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Registering Kernel netlink command channel
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Netlink reflector reports IP 192.168.11.28 added
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Netlink reflector reports IP fe80::20c:29ff:fe2d:bab0 added
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Registering Kernel netlink reflector
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Registering Kernel netlink command channel
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Registering gratuitous ARP shared channel
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Opening file ‘/etc/keepalived/keepalived.conf‘.
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Opening file ‘/etc/keepalived/keepalived.conf‘.
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Configuration is using : 63319 Bytes
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: Using LinkWatch kernel netlink reflector...
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Configuration is using : 17292 Bytes
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) Entering BACKUP STATE
Oct 21 22:58:34 redis_master Keepalived_vrrp[22649]: VRRP sockpool: [ifindex(2), proto(112), unicast(0), fd(10,11)]
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Using LinkWatch kernel netlink reflector...
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Activating healthchecker for service [192.168.11.30]:80
Oct 21 22:58:34 redis_master Keepalived_healthcheckers[22648]: Activating healthchecker for service [192.168.11.21]:80
Oct 21 22:58:38 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) Transition to MASTER STATE
Oct 21 22:58:39 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) Entering MASTER STATE
Oct 21 22:58:39 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) setting protocol VIPs.
Oct 21 22:58:39 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth0 for 192.168.11.17
Oct 21 22:58:39 redis_master Keepalived_healthcheckers[22648]: Netlink reflector reports IP 192.168.11.17 added
Oct 21 22:58:44 redis_master Keepalived_vrrp[22649]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth0 for 192.168.11.17

[[email protected] ~]# curl http://192.168.11.17                #使用其他的机制访问,OK也是我们所设定的rr调度算法
<h1>===21===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===30===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===21===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===30===</h1>

六、启动K1,由于是MASTER 优先级是100 所以VIP地址资源会被抢占到本机

[[email protected] keepalived]# ip add sh                              #我们发现,VIP地址被抢过来了
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:ad:98:5c brd ff:ff:ff:ff:ff:ff
    inet 192.168.11.26/24 brd 192.168.11.255 scope global eth0
    inet 192.168.11.17/32 scope global eth0
    inet6 fe80::20c:29ff:fead:985c/64 scope link 
       valid_lft forever preferred_lft forever
[[email protected] keepalived]# ipvsadm -Ln                            #服务也是正常的,记得K2使用ipvsadm -Ln 看到的也是一样的
IP Virtual Server version 1.2.1 (size=4096)
Prot LocalAddress:Port Scheduler Flags
  -> RemoteAddress:Port           Forward Weight ActiveConn InActConn
TCP  192.168.11.17:80 rr
  -> 192.168.11.21:80             Route   1      0          0         
  -> 192.168.11.30:80             Route   1      0          0  
[[email protected] ~]# curl http://192.168.11.17                #使用其他的机制访问,OK也是我们所设定的rr调度算法
<h1>===21===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===30===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===21===</h1>
[[email protected] ~]# curl http://192.168.11.17
<h1>===30===</h1>

七、停掉R1/R2服务,看看是否会是我们所希望的那样提示sorry_server的友好界面

[[email protected] keepalived]# cat /var/www/html/index.html      #K1的友好界面提示,为了实验区分,特地+K1

<h1>===localhost--K1==</h1>

[[email protected] keepalived]# cat /var/www/html/index.html      #K2的友好界面提示,为了实验区分,特地+K2

<h1>===localhost--K2===</h1>

[[email protected] ~]# systemctl stop httpd               #停掉R2的httpd服务

[[email protected] keepalived]# ipvsadm -Ln               #K1上查看,192.168.11.30:80的被自动去掉了

IP Virtual Server version 1.2.1 (size=4096)

Prot LocalAddress:Port Scheduler Flags

-> RemoteAddress:Port           Forward Weight ActiveConn InActConn

TCP  192.168.11.17:80 rr

-> 192.168.11.21:80             Route   1      0          0

[[email protected] keepalived]# ipvsadm -Ln              #K2上查看,192.168.11.30:80的被自动去掉了,更K1是一样的

IP Virtual Server version 1.2.1 (size=4096)

Prot LocalAddress:Port Scheduler Flags

-> RemoteAddress:Port           Forward Weight ActiveConn InActConn

TCP  192.168.11.17:80 rr

-> 192.168.11.21:80             Route   1      0          0

[[email protected] ~]# service httpd stop               #停掉R1的httpd服务

Stopping httpd:                                            [  OK  ]

[[email protected] keepalived]# ipvsadm -Ln              #使用了我们的定义的sorry_server

IP Virtual Server version 1.2.1 (size=4096)

Prot LocalAddress:Port Scheduler Flags

-> RemoteAddress:Port           Forward Weight ActiveConn InActConn

TCP  192.168.11.17:80 rr

-> 127.0.0.1:80                 Local   1      0          0

[[email protected] ~]# curl http://192.168.11.17        #如我们所要的结果

<h1>===localhost--K1==</h1>

[[email protected] keepalived]# service keepalived stop        #停掉K1的keepalived

停止 keepalived:                                          [确定]

[[email protected] ~]# curl http://192.168.11.17       #如我们所要的结果,VIP跑去了K2,至此keepalived搭建的简单httpd高可用就搭建OK啦 ^-^

<h1>===localhost--K2===</h1>

时间: 2024-10-07 06:30:48

Keepalived Httpd的简单高可用搭建及设定sorry_server的相关文章

keepalived实现lvs的高可用

搭建环境: 两台director,两台RS director1:ip(172.16.125.5),安装好keepalived: director2:ip(172.16.125.6),安装好keepalived: RS1:ip(172.16.125.7),安装好httpd: RS2:ip(172.16.125.8),安装好httpd: vip(1):172.16.125.100,vip(2):172.16.125.110. 在此处keepalived实现lvs的高可用,使用了lvs的dr模型.关闭

ansible部署简单高可用LAMP

ansible部署简单高可用LAMP ansible主机:192.168.152.145HA1(HighAvailable):192.168.152.140HA2:192.168.152.141VIP1(virtualIP):192.168.152.190VIP2:192.168.152.191AP1(Apache+PHP):192.168.152.142AP2(Apache+PHP):192.168.152.143DB:192.168.152.144 配置ansible yum -y inst

keepalived实现nginx的高可用 + nginx负载均衡

前言 使用集群是网站解决高并发.海量数据问题的常用手段.当一台服务器的处理能力.存储空间不足时,不要企图去换更强大的服务器,对大型网站而言,不管多么强大的服务器,都满足不了网站持续增长的业务需求.这种情况下,更恰当的做法是增加一台服务器分担原有服务器的访问及存储压力.通过负载均衡调度服务器,将来自浏览器的访问请求分发到应用服务器集群中的任何一台服务器上,如果有更多的用户,就在集群中加入更多的应用服务器,使应用服务器的负载压力不再成为整个网站的瓶颈. 摘自<大型网站技术架构_核心原理与案例分析>

Keepalived+Haproxy双主高可用负载均衡web和mysql综合实验

日期及版本:2014.5.4v1.0 架构图 实验目的: 1.Haproxy+Keepalived双主双机高可用模型,keepalived为Haproxy主从提供高可用保证haproxy-master若挂掉haproxy-backup能无缝接管,haproxy为后端Web提供负载均衡,缓解并发压力,实现WEB站点负载均衡+高可用性: 2. Haproxy反代web做动静分离: 3. Haproxy反代mysql 算法leastconn和roundrobin的不同效果: 系统环境: OS:cent

HAProxy + Keepalived + Flume 构建高性能高可用分布式日志系统

一.HAProxy简介 HAProxy提供高可用性.负载均衡以及基于TCP和HTTP应用的代 理,支持虚拟主机,它是免费.快速并且可靠的一种解决方案.HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理. HAProxy运行在当前的硬件上,完全可以支持数以万计的并发连接.并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的web服务器不被暴露到网络上. 二.Keepalived简介 它是一个基于VRRP协议来实现的WEB服务高可用方案,

基于keepalived对HAproxy做高可用集群

一.Keepalived简介 Keepalived的作用是检测web服务器的状态,如果有一台web服务器死机,或工作出现故障,Keepalived将检测到,并将有故障的web服务器从系统中剔除,当web服务器工作正常后Keepalived自动将web服务器加入到服务器群中,这些工作全部自动完成,不需要人工干涉,需要人工做的只是修复故障的web服务器. Layer3,4&7工作在IP/TCP协议栈的IP层,TCP层,及应用层,原理分别如下: Layer3:Keepalived使用Layer3的方式

使用keepalived实现haproxy的高可用

一.haproxy和keepalived的解释及本次实验的拓扑图: 1.haproxy:haproxy是免费.极速且可靠的用于为TCP和基于HTTP应用程序提供负载均衡和代理服务的解决方案,尤其适用于高负载且需要持久连接或7层处理机制的web站点. 2.haproxy的特性:客户端侧的长连接(client-side keep-alive):TCP加速(TCP speedups): 响应池(response buffering):RDP协议:基于源的粘性(source-based stickine

keepalived lvs 实现lvs高可用

keepalived 简介 keepalived是借用VRRP协议来实现高可用性的,VRRP协议是解决单点故障,使路由器和层三交换机实现冗余功能. keepalived启动后会有三个进程 父进程:内存管理,子进程管理等等 子进程:VRRP子进程 子进程:healthchecker子进程 从图上可以看出,两个子进程都被系统WatchDog看管,两个子进程各自操作自己的事,healthchecker子进程负责检查各自服务器的健康程度,例如HTTP,LVS等等,如果healthchecker子进程检查

apache+inotify-tools+keepalived+lvs-DR模式配置高可用负载均衡集群

环境:虚拟机VMware workstation 9 操作系统:Redhat 5.6 i386 一.keepalived+LVS-DR模式配置高可用负载均衡 拓扑如下: 二.服务器IP配置信息 四台服务器均有VMware虚拟机实现,两台HA主机.两台web服务器.网络方式都设置为NAT模式 1.master:192.168.80.145 2.slaver:192.168.80.137 3.web1:192.168.80.144 4.web2:192.168.80.134 5.VIP:192.16