关于LVS负载均衡群集的案例简介
admin
2023-02-24 20:20:04
0

下文给大家带来关于LVS负载均衡群集的案例简介,希望能够给大家在实际运用中带来一定的帮助,负载均衡涉及的东西比较多,理论也不多,网上有很多书籍,今天我们就用在行业内累计的经验做一个解答。

一、案例简介

1、案例环境

关于LVS负载均衡群集的案例简介

2、实验结果

  • 使用NAT模式的群集技术,LVS负载调度器是所有节点访问Internet的网关云服务器,其192.168.200.10作为整个群集的VIP地址。

  • 使用轮询(rr)的调度算法。

  • web1和web2先搭建web服务,分别准备不同的网页文件,供客户端访问,以此来确定client访问LVS服务器的192.168.200.10,可以访问到两台web服务器。

  • 待client测试成功后,web1和web2便可以挂载NFS服务器提供的共享目录,以此来为client提供相同的网页文件。

二、开始搭建复制均衡群集

1、部署Web1服务器:

[root@centos01 ~]# yum -y install httpd  
[root@centos01 ~]# echo "www.benet.com" > 
/var/www/html/index.html   
[root@centos01 ~]# systemctl start httpd   
[root@centos01 ~]# systemctl enable httpd  
[root@centos01 ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens32   
      
GATEWAY=192.168.100.40   
[root@centos01 ~]# systemctl restart network

2、部署Web2服务器:

[root@centos02 ~]# yum -y install httpd    
[root@centos02 ~]# echo "www.accp.com" > 
/var/www/html/index.html    
[root@centos02 ~]# systemctl start httpd    
[root@centos02 ~]# systemctl enable httpd 
[root@centos02 ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens32    
          
GATEWAY=192.168.100.40   
[root@centos02 ~]# systemctl restart network 

3、部署网关/LVS服务器:

[root@centos04 ~]# cp /etc/sysconfig/network-scripts/ifcfg-ens32 
/etc/sysconfig/network-scripts/ifcfg-ens34  

[root@centos04 ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens34   
        
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=static
DEFROUTE=yes
NAME=ens34      
DEVICE=ens34   
ONBOOT=yes
IPADDR=192.168.200.10   
NATEMASK=255.255.255.0
[root@centos04 ~]# systemctl restart network 
[root@centos04 ~]# vim /etc/sysctl.conf   
net.ipv4.ip_forward = 1

[root@centos04 ~]# sysctl -p   
net.ipv4.ip_forward = 1
[root@centos04 ~]# modprobe ip_vs   
[root@centos04 ~]# yum -y install ipvsadm
[root@centos04 ~]# ipvsadm -C   
[root@centos04 ~]# ipvsadm -A -t 192.168.200.10:80 -s rr  
             
[root@centos04 ~]# ipvsadm -a -t 192.168.200.10:80 -r 
192.168.100.10:80 -m -w 1   
[root@centos04 ~]# ipvsadm -a -t 192.168.200.10:80 -r 
192.168.100.20:80 -m -w 1   
[root@centos04 ~]# ipvsadm-save   
-A -t centos04:http -s rr
-a -t centos04:http -r 192.168.100.10:http -m -w 1
-a -t centos04:http -r 192.168.100.20:http -m -w 1
[root@centos04 ~]# ipvsadm-save > 
/etc/sysconfig/ipvsadm.bak
[root@centos04 ~]# cat /etc/sysconfig/ipvsadm.bak 
-A -t centos04:http -s rr
-a -t centos04:http -r 192.168.100.10:http -m -w 1
-a -t centos04:http -r 192.168.100.20:http -m -w 1

4、配置客户端

1)客户端配置IP地址
关于LVS负载均衡群集的案例简介

2)测试LVS负载均衡服务器是否工作正常(多次访问192.168.200.10,可以得到两个不同的页面):
关于LVS负载均衡群集的案例简介

关于LVS负载均衡群集的案例简介

5、配置NFS共享存储

[root@centos03 ~]# yum -y install nfs-utils rpcbind 
[root@centos03 ~]# systemctl enable nfs 
[root@centos03 ~]# systemctl enable rpcbind 
[root@centos03 ~]# mkdir -p /opt/wwwroot   
[root@centos03 ~]# echo "www.wangyi.com" > 
/opt/wwwroot/index.html   
[root@centos03 ~]# vim /etc/exports   
/opt/wwwroot    192.168.100.0/24(rw,sync,no_root_squash)  
[root@centos03 ~]# systemctl restart rpcbind  
[root@centos03 ~]# systemctl restart nfs   
[root@centos03 ~]# showmount -e   
Export list for centos03:
/opt/wwwroot 192.168.100.0/24
1)Web服务器1挂载共享目录
[root@centos01 ~]# yum -y install rpcbind nfs-utils
[root@centos01 ~]# systemctl enable rpcbind
                       
[root@centos01 ~]# systemctl start rpcbind 
[root@centos01 ~]# showmount -e 192.168.100.30  
                           
Export list for 192.168.100.30:
/opt/wwwroot 192.168.100.0/24
[root@centos01 ~]# mount 192.168.100.30:/opt/wwwroot 
/var/www/html/   
[root@centos01 ~]# df -hT /var/www/html/ 
文件系统                    类型  容量  已用  可用 已用% 挂载点
192.168.100.30:/opt/wwwroot nfs4   76G  3.7G   73G    5% /var/www/html
[root@centos01 ~]# vim /etc/fstab   
192.168.100.30:/opt/wwwroot     /var/www/html                     nfs     defaults,_netdev 0 0
2)Web服务器2挂载共享目录
[root@centos02 ~]# yum -y install rpcbind nfs-utils 
[root@centos02 ~]# systemctl enable rpcbind  
                                     
[root@centos02 ~]# systemctl start rpcbind    
[root@centos02 ~]# showmount -e 192.168.100.30   
                             
Export list for 192.168.100.30:
/opt/wwwroot 192.168.100.0/24
[root@centos02 ~]# mount 192.168.100.30:/opt/wwwroot 
/var/www/html/     
[root@centos02 ~]# df -hT /var/www/html/ 
文件系统                    类型  容量  已用  可用 已用% 挂载点
192.168.100.30:/opt/wwwroot nfs4   76G  3.7G   73G    5% /var/www/html
[root@centos02 ~]# vim /etc/fstab   
192.168.100.30:/opt/wwwroot     /var/www/html                     nfs     defaults,_netdev 0 0

6、客户端访问

关于LVS负载均衡群集的案例简介
至此,不管怎样刷新访问,都将是看到同一个网页。最终的LVS负载均衡效果也就实现了。

当LVS服务器重启后,LVS规则将会丢失,这就用到了备份,需要注意的是,备份时的主机名和恢复时的主机名必须一致,并且需要注意网卡优先的问题,否则在恢复后,会发现VIP(群集的虚拟IP)变成了LVS服务器的另一个IP地址

[root@centos04 ~]# ipvsadm -ln  
IP Virtual Server version 1.2.1 (size=4096)
Prot LocalAddress:Port Scheduler Flags
  -> RemoteAddress:Port           Forward Weight ActiveConn InActConn

[root@centos04 ~]# ipvsadm-restore < 
/etc/sysconfig/ipvsadm.bak    
[root@centos04 ~]# 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.100.40:80 rr
  -> 192.168.100.10:80            Masq    1      0          0         
  -> 192.168.100.20:80            Masq    1      0          0   

看了以上关于关于LVS负载均衡群集的案例简介,如果大家还有什么地方需要了解的可以在行业资讯里查找自己感兴趣的或者找我们的专业技术工程师解答的,技术工程师在行业内拥有十几年的经验了。

 

相关内容

热门资讯

“725上凯道游行”靠游览车动... 海峡导报综合报道 国民党全代会今天(25日)上午登场,紧接着下午即进行“725反毒油凯道抗议游行”。...
超过阿里巴巴和美团,携程为何挨... 2026年7月,市场监管总局对携程集团有限公司滥用市场支配地位行为作出行政处罚决定,责令携程停止违法...
夺取全年粮食丰收有较好基础(权... 本报记者 郁静娴“农业农村经济保持稳中向好的良好势头,为国民经济延续总体平稳、向新向优的态势提供有力...
山西洪洞发生黄土崩塌,致5人死... 今天(25日)上午,记者从山西省洪洞县应急管理局获悉,洪洞县好义村黄土崩塌受困人员已全部找到。其中,...
瑞尔塔完成核聚变装置内直接能量... (来源:电力国际汇epintl) 六月早些时候,《聚变能源报道》曾刊发过瑞尔塔聚变公司(Realta...
中海油服获得发明专利授权:“一... 证券之星消息,根据天眼查APP数据显示中海油服(601808)新获得一项发明专利授权,专利名为“一种...
特朗普:301关税正式接棒,已... 据凤凰卫视报道,特朗普24日在白宫回应多项议题,强调最高法院推翻旧关税法源后,政府已改采新的法律依据...
夫妇雨天出门疑被电身亡,现场有... 7月24日,新京报记者多方核实获悉,陕西宝鸡永清村22日晚突发雷暴雨,一对中年夫妇雨天在村中道路疑被...
游戏掌机存储卡推荐:三星 T7... 当游戏加载条变短、4K视频秒录、掌机库一键随行——存储不该是妥协的理由。 三星T7,1TB大容量m...
宇树科技创始人兼CEO王兴兴登... 王兴兴登上时代封面。 当地时间7月23日,宇树科技创始人兼CEO王兴兴与其载人机甲产品GD01共同登...