9月5号

18.1 集群介绍

1. 根据功能划分为两大类:高可用和负载均衡

2. 高可用集群通常为两台服务器,一台工作,另外一台作为冗余,当提供服务的机器宕机,冗余将接替继续提供服务

3. 实现高可用的开源软件有:heartbeat、keepalived

负载均衡集群,需要有一台服务器作为分发器,它负责把用户的请求分发给后端的服务器处理,在这个集群里,除了分发器外,就是给用户提供服务的服务器了,这些服务器数量至少为2

4. 实现负载均衡的开源软件有LVS、keepalived、haproxy、nginx,商业的有F5、Netscaler

18.2 keepalived介绍

1. 在这里我们使用keepalived来实现高可用集群,因为heartbeat在centos6上有一些问题,影响实验效果

2. keepalived通过VRRP(Virtual Router Redundancy Protocl)来实现高可用。

3. 在这个协议里会将多台功能相同的路由器组成一个小组,这个小组里会有1个master角色和N(N>=1)个backup角色。

4. master会通过组播的形式向各个backup发送VRRP协议的数据包,当backup收不到master发来的VRRP数据包时,就会认为master宕机了。此时就需要根据各个backup的优先级来决定谁成为新的mater。

5. Keepalived要有三个模块,分别是core、check和vrrp。其中core模块为keepalived的核心,负责主进程的启动、维护以及全局配置文件的加载和解析,check模块负责健康检查,vrrp模块是来实现VRRP协议的。

18.3-18.5用keepalived配置高可用集群(上中下)

1. 准备两台机器hao1和hao2 :

hao1作为master,hao2作为backup

2. 两台机器都安装 :yum install -y keepalived

[root@hao-01 ~]# yum install -y keepalived

[root@hao-02 ~]# yum install -y keepalived

3. 两台机器都安装nginx,可以编译安装nginx :

也可以用yum安装nginx : yum install -y nginx

安装epel仓库(源码包,默认centos不带nginx包) :

yum install -y epel-release

yum install -y nginx

yum安装nginx启动方式:service nginx start

编译安装nginx启动方式:/etc/init.d/nginx start

4. 搜索nginx是否启动 ?

[root@hao-01 ~]# ps aux |grep nginx

[root@hao-02 ~]# ps aux |grep nginx

hao1机器上操作

(这里hao1是编译安装的nginx)

5. 清空keepalived.conf文件中的内容(hao1机器) :

[root@hao-01 ~]# > /etc/keepalived/keepalived.conf

6. 重新配置keepalived.conf文件(hao1机器) :

[root@hao-01 ~]# vim /etc/keepalived/keepalived.conf

插入内容:

global_defs {

bal_defs {

notification_email {


	1023247309@qq.com


}

notification\_email\_from root@hao.com

smtp_server 127.0.0.1

smtp\_connect\_timeout 30

router\_id LVS\_DEVEL

}

vrrp\_script chk\_nginx {

script "/usr/local/sbin/check_ng.sh"

interval 3

}

vrrp\_instance VI\_1 {

state MASTER

interface ens33

virtual\_router\_id 51

priority 100

advert_int 1

authentication {


   auth_type PASS

   auth_pass haomima>com


}

virtual_ipaddress {


  192.168.130.100


}

track_script {


   chk_nginx


}

}

7. 创建check_ng.sh脚本,并添加内容 :

[root@hao-01 ~]# vim /usr/local/sbin/check_ng.sh

插入内容:

!/bin/bash

时间变量,用于记录日志

d=`date --date today +%Y%m%d_%H:%M:%S`

计算nginx进程数量

n=`ps -C nginx --no-heading|wc -l`

如果进程为0,则启动nginx,并且再次检测nginx进程数量,

如果继续还是为0,说明nginx无法启动,此时需要关闭keepalived

if [ $n -eq "0" ]; then

   /etc/init.d/nginx start

yum安装的nginx用:systemctl start nginx 编译安装的用:/etc/init.d/nginx start

   n2=\`ps -C nginx --no-heading|wc -l\`

   if \[ $n2 -eq "0"  \]; then

           echo "$d nginx down,keepalived will stop" >> /var/log/check_ng.log

           systemctl stop keepalived

   fi


fi

clipboard.png

8. 设定check_ng.sh脚本755权限 :

[root@hao-01 ~]# chmod 755 /usr/local/sbin/check_ng.sh

9. 启动keepalived :

[root@hao-01 ~]# systemctl start keepalived

10. 搜索keepalived是否启动 ?

[root@hao-02 ~]# ps aux |grep keepalived

clipboard.png

11. 关闭Nginx,再搜索nginx是否启动 ?

[root@hao-01 ~]# /etc/init.d/nginx stop

[root@hao-01 ~]# ps aux |grep nginx

11. 临时关闭getenforce防火墙 :

[root@hao-01 ~]# setenforce 0

关闭firewalld防火墙:

[root@hao-01 ~]# systemctl stop firewalld

hao2机器上操作

(这里hao2是yum安装的nginx)

12. 临时关闭getenforce防火墙 :

[root@hao-02 ~]# setenforce 0

关闭firewalld防火墙:

[root@hao-02 ~]# systemctl stop firewalld

13. 清空keepalived.conf文件中的内容(hao2机器) :

[root@hao-02 ~]# > /etc/keepalived/keepalived.conf

14. 重新配置keepalived.conf文件(hao2机器) :

[root@hao-02 ~]# vim /etc/keepalived/keepalived.conf

global_defs {

notification_email {


1071599947@qq.com


}

notification\_email\_from root@hao.com

smtp_server 127.0.0.1

smtp\_connect\_timeout 30

router\_id LVS\_DEVEL

}

vrrp\_script chk\_nginx {

script "/usr/local/sbin/check_ng.sh"

interval 3

}

vrrp\_instance VI\_1 {

state BACKUP

interface ens33

virtual\_router\_id 51

priority 90

advert_int 1

authentication {


   auth_type PASS

   auth_pass haomima>com


}

virtual_ipaddress {


  192.168.130.100


}

track_script {


   chk_nginx


}

}

15. 创建check_ng.sh脚本,并添加内容 :

[root@hao-02 ~]# vim /usr/local/sbin/check_ng.sh

!/bin/bash

时间变量,用于记录日志

d=`date --date today +%Y%m%d_%H:%M:%S`

计算nginx进程数量

n=`ps -C nginx --no-heading|wc -l`

如果进程为0,则启动nginx,并且再次检测nginx进程数量,

如果继续还是为0,说明nginx无法启动,此时需要关闭keepalived

if [ $n -eq "0" ]; then

   systemctl start nginx

yum安装的nginx用:systemctl start nginx 编译安装的用:/etc/init.d/nginx start

   n2=\`ps -C nginx --no-heading|wc -l\`

   if \[ $n2 -eq "0"  \]; then

           echo "$d nginx down,keepalived will stop" >> /var/log/check_ng.log

           systemctl stop keepalived

   fi

fi

16. 设定check_ng.sh脚本755权限 :

[root@hao-02 ~]# chmod 755 /usr/local/sbin/check_ng.sh

17. 启动keepalived :

[root@hao-02 ~]# systemctl start keepalived

18. 搜索keepalived是否启动 ?

[root@hao-02 ~]# ps aux |grep keepalived

hoa1 hao2机器都打开80端口:

打开80端口 :

[root@hao-01 ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT

[root@hao-02 ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT

游览器访问hao1 hao2 ip :

测试高可用

1. 关闭Nginx,再搜索nginx是否启动 ?

[root@hao-01 ~]# systemctl stop nginx

clipboard.png

[root@hao-01 ~]# ps aux |grep nginx

2. ip add查看.100是不是在hao1机器上(master) :

[root@hao-01 ~]# ip add

clipboard.png

模仿hao1机器挂了,关闭了 keepalived

[root@hao-01 ~]# systemctl stop keepalived

[root@hao-01 ~]# ip add

clipboard.png

3. hao1机器(master)挂了,hao2机器(backup)上,ip add查看.100自动挂载到了hao2上!

clipboard.png

4. hao1机器(master)再启动keepalived .100又挂在hao1机器 :

[root@hao-01 ~]# systemctl start keepalived

clipboard.png

转载于:https://my.oschina.net/u/3869214/blog/2208178

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值