1、环境准备
准备好下面四台台服务器:
主机名 | IP | 角色 | open-Euler1 | 192.168.121.150(公网)、192.168.16.150(内网) | LVS | openEuler-2 | 192.168.121.151 | Real Server1 | openEuler-3 | 192.168.121.152 | Real Server2 | Rocky8 | 192.168.121.160 | Client | 2、Web服务器设置
在两台RS上安装并设置nginx服务:
- open-Euler2
- [root@open-Euler2 ~]# echo "This is test page `hostname -I`" > /var/www/html/index.html
- [root@open-Euler2 ~]# systemctl restart httpd
- [root@open-Euler2 ~]# curl 192.168.16.151
- This is test page 192.168.16.151
- open-Euler3
- [root@open-Euler3 ~]# echo "This is test page `hostname -I`" > /var/www/html/index.html
- [root@open-Euler3 ~]# systemctl restart httpd
- [root@open-Euler3 ~]# curl 192.168.16.152
- This is test page 192.168.16.152
复制代码 3、LVS开启路由转发
在lvs上:
- 临时开启:
- 1、echo1>/proc/sys/net/ipv4/ip_forward
- 2、sysctl -w net.ipv4.ip_forward=1
- 永久开启:
- 修改文件 /etc/sysctl.conf
- net.ipv4.ip forward=1
- 使生效:sysctl -p
复制代码 4、LVS设置
在lvs上:
- [root@opem-Euler1 yum.repos.d]# yum install ipvsadm #下载ipvsadm管理工具
- [root@localhost yum.repos.d]# ipvsadm -At 192.168.121.150:80 -s rr
- [root@localhost yum.repos.d]# ipvsadm -at 192.168.121.150:80 -r 192.168.16.151:80 -m
- [root@localhost yum.repos.d]# ipvsadm -at 192.168.121.150:80 -r 192.168.16.152:80 -m
- [root@openEuler-1 ~]# 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.121.150:80 rr
- -> 192.168.16.151:80 Masq 1 0 0
- -> 192.168.16.152:80 Masq 1 0 0
复制代码 5、LVS-NAT 集群测试
在Client上:
- [root@Rocky8 ~]# for ((i=0;i<=9;i++)); do curl 192.168.121.150:80; done
- This is test page 192.168.16.152
- This is test page 192.168.16.151
- This is test page 192.168.16.152
- This is test page 192.168.16.151
- This is test page 192.168.16.152
- This is test page 192.168.16.151
- This is test page 192.168.16.152
- This is test page 192.168.16.151
- This is test page 192.168.16.152
- 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 文件在文件里面添加以下内容:
- # 健康检查超时时间(秒)
- checktimeout = 3
- # 健康检查间隔时间(秒)
- checkinterval = 1
- # 是否在配置文件更改时自动重新加载
- autoreload = yes
- # ldirectord日志文件路径
- logfile = "/var/log/ldirectord.log"
- # 是否在健康检查失败时将节点设置为静默状态
- quiescent = no
- # 虚拟服务的IP地址和端口
- virtual = 192.168.121.150:80
- # 第一个真实服务器的IP地址、端口和转发模式(masq表示NAT)
- real = 192.168.16.151:80 masq
- # 第二个真实服务器的IP地址、端口和转发模式(masq表示NAT)
- real = 192.168.16.152:80 masq
- # 所有真实服务器都失败时的备用服务器
- fallback = 127.0.0.1:80
- # 服务类型(HTTP)
- service = http
- # 调度算法(轮询)
- scheduler = rr
- # 会话持久性超时时间
- #persistent = 600
- # 控制持久性的网络掩码
- #netmask = 255.255.255.255
- # 使用的协议(TCP)
- protocol = tcp
- # 健康检查类型(协商)
- checktype = negotiate
- # 健康检查的端口
- checkport = 80
复制代码 注:这个设置文件里的内容跟之前ipvsadm设置的内容重合了,我们可以用该命令删掉之前的ipvsadm设置
ipvsadm -C
4.重启服务
- systemctl status ldirectord.service
复制代码 这里重新天生了虚拟服务器设置
5.测试
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |