基于 openEuler 构建 LVS-NAT 集群和ldirectord监控RS

打印 上一主题 下一主题

主题 660|帖子 660|积分 1980

 1、环境准备

准备好下面四台台服务器:
主机名IP角色
open-Euler1192.168.121.150(公网)、192.168.16.150(内网)LVS
openEuler-2192.168.121.151Real Server1
openEuler-3192.168.121.152Real Server2
Rocky8192.168.121.160Client
2、Web服务器设置

在两台RS上安装并设置nginx服务:
  1. open-Euler2
  2. [root@open-Euler2 ~]# echo "This is test page `hostname -I`" > /var/www/html/index.html
  3. [root@open-Euler2 ~]# systemctl restart httpd
  4. [root@open-Euler2 ~]# curl 192.168.16.151
  5. This is test page 192.168.16.151
  6. open-Euler3
  7. [root@open-Euler3 ~]# echo "This is test page `hostname -I`" > /var/www/html/index.html
  8. [root@open-Euler3 ~]# systemctl restart httpd
  9. [root@open-Euler3 ~]# curl 192.168.16.152
  10. This is test page 192.168.16.152
复制代码
3、LVS开启路由转发

在lvs上:
  1. 临时开启:
  2. 1、echo1>/proc/sys/net/ipv4/ip_forward
  3. 2、sysctl -w net.ipv4.ip_forward=1
  4. 永久开启:
  5. 修改文件 /etc/sysctl.conf
  6. net.ipv4.ip forward=1
  7. 使生效:sysctl -p
复制代码
4、LVS设置

在lvs上:
  1. [root@opem-Euler1 yum.repos.d]# yum install ipvsadm #下载ipvsadm管理工具
  2. [root@localhost yum.repos.d]# ipvsadm -At 192.168.121.150:80 -s rr
  3. [root@localhost yum.repos.d]# ipvsadm -at 192.168.121.150:80 -r 192.168.16.151:80 -m
  4. [root@localhost yum.repos.d]# ipvsadm -at 192.168.121.150:80 -r 192.168.16.152:80 -m
  5. [root@openEuler-1 ~]# ipvsadm -Ln
  6. IP Virtual Server version 1.2.1 (size=4096)
  7. Prot LocalAddress:Port Scheduler Flags
  8.   -> RemoteAddress:Port           Forward Weight ActiveConn InActConn
  9. TCP  192.168.121.150:80 rr
  10.   -> 192.168.16.151:80            Masq    1      0          0
  11.   -> 192.168.16.152:80            Masq    1      0          0
复制代码
5、LVS-NAT 集群测试

在Client上:
  1. [root@Rocky8 ~]# for ((i=0;i<=9;i++)); do curl 192.168.121.150:80; done
  2. This is test page 192.168.16.152
  3. This is test page 192.168.16.151
  4. This is test page 192.168.16.152
  5. This is test page 192.168.16.151
  6. This is test page 192.168.16.152
  7. This is test page 192.168.16.151
  8. This is test page 192.168.16.152
  9. This is test page 192.168.16.151
  10. This is test page 192.168.16.152
  11. This is test page 192.168.16.151
复制代码
6.ldirectord工具

1.简介

ldirectord是专门为LVS监控而编写的,用来监控lvs架构中服务器池(server pool) 的服务器状态。 ldirectord 运行在 IPVS 节点上, ldirectord作为一个保卫进程启动后会对服务器池中的每个真实服务器 发送请求进行监控,如果 服务器没有响应 lldirectord 的请求,那么ldirectord 以为该服务器不可用, ldirectord 会运行 ipvsadm 对 IPVS表中该服务器进行删除,如果等下次再次检测有相应则通过ipvsadm 进行添加
ldirectord:监控和控制LVS保卫进程,可管理LVS规则
2.工具下载地点

http://rpm.pbone.net/index.php3/stat/4/idpl/23860919/dir/centos_6/com/ldirectord-3.9.5- 3.1.x86_64.rpm.html
3.设置

创建 /etc/ha.d/ldirectord.cf 文件在文件里面添加以下内容:
  1. # 健康检查超时时间(秒)
  2. checktimeout = 3
  3. # 健康检查间隔时间(秒)
  4. checkinterval = 1
  5. # 是否在配置文件更改时自动重新加载
  6. autoreload = yes
  7. # ldirectord日志文件路径
  8. logfile = "/var/log/ldirectord.log"
  9. # 是否在健康检查失败时将节点设置为静默状态
  10. quiescent = no
  11. # 虚拟服务的IP地址和端口
  12. virtual = 192.168.121.150:80
  13. # 第一个真实服务器的IP地址、端口和转发模式(masq表示NAT)
  14. real = 192.168.16.151:80 masq
  15. # 第二个真实服务器的IP地址、端口和转发模式(masq表示NAT)
  16. real = 192.168.16.152:80 masq
  17. # 所有真实服务器都失败时的备用服务器
  18. fallback = 127.0.0.1:80
  19. # 服务类型(HTTP)
  20. service = http
  21. # 调度算法(轮询)
  22. scheduler = rr
  23. # 会话持久性超时时间
  24. #persistent = 600
  25. # 控制持久性的网络掩码
  26. #netmask = 255.255.255.255
  27. # 使用的协议(TCP)
  28. protocol = tcp
  29. # 健康检查类型(协商)
  30. checktype = negotiate
  31. # 健康检查的端口
  32. checkport = 80
复制代码
  注:这个设置文件里的内容跟之前ipvsadm设置的内容重合了,我们可以用该命令删掉之前的ipvsadm设置
  ipvsadm -C
  

4.重启服务

  1. systemctl status ldirectord.service
复制代码
这里重新天生了虚拟服务器设置

5.测试



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

星球的眼睛

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表