NAT模式LVS负载均衡群集部署

LVS调度器作为Web 服务器池的网关,LVS具有两块网卡,分别连接内外网,使用轮询(rr)调度算法

主机 操作系统 IP地址 工具/软件/安装包
负载均衡器 CentOS7

内网:192.168.223.9

外网:10.0.0.1

iptables、iptables-untils、ipvsadm
NFS服务器 CentOS7 192.168.223.10 rpcbind、nfs-utils
Web节点服务器1 CentOS7 192.168.223.11 rpcbind、nfs-utils、httpd
Web节点服务器2 CentOS7 192.168.223.12 rpcbind、nfs-utils、httpd
客户端 Windows10 10.10.11.52

1.​部署共享存储(NFS服务器:192.168.131.20)

systemctl stop firewalld.service
systemctl disable firewalld.service
setenforce 0
 
yum -y install nfs-utils rpcbind
 
systemctl start rpcbind.service
systemctl start nfs.service
 
systemctl enable nfs.service
systemctl enable rpcbind.service
 
mkdir /opt/wu
mkdir /opt/wxj
 
chmod 777 /opt/wu
chmod 777 /opt/wxj
 
vim /etc/exports
/usr/share *(ro,sync)
/opt/lic 192.168.131.0/24(rw,sync)
/opt/kiki 192.168.131.0/24(rw,sync)
 
exportfs -rv

NAT模式LVS负载均衡群集部署_第1张图片

NAT模式LVS负载均衡群集部署_第2张图片

NAT模式LVS负载均衡群集部署_第3张图片

 NAT模式LVS负载均衡群集部署_第4张图片

2.配置节点服务器(192.168.131.30、192.168.131.40)

systemctl stop firewalld.service
systemctl disable firewalld.service
setenforce 0
 
yum install httpd -y
systemctl start httpd.service
systemctl enable httpd.service
 
yum -y install nfs-utils rpcbind
showmount -e 192.168.131.20
 
systemctl start rpcbind
systemctl enable rpcbind

两台机器一样的配置

 挂载分享端内容

mount.nfs 192.168.131.20:/opt/wu /var/www/html
 
echo 'this is wu' > /var/www/html/index.html

cat /var/www/html/index.html

NAT模式LVS负载均衡群集部署_第5张图片

在nfs端查看同步后得内容

 修改网卡信息

NAT模式LVS负载均衡群集部署_第6张图片

重启网卡

Web-2(192.168.131.40)

mount.nfs 192.168.131.20:/opt/wxj /var/www/html

echo 'this is wxj' > /var/www/html/index.html

cat /var/www/html/index.html

NAT模式LVS负载均衡群集部署_第7张图片

 NAT模式LVS负载均衡群集部署_第8张图片

在nfs端查看同步后得内容

 3.配置负载调度器(内网关 ens33:192.168.131.50,外网关 ens37:192.168.145.50)

 

你可能感兴趣的:(负载均衡,lvs,网络)