码迷,mamicode.com
首页 > 其他好文 > 详细

LVS集群

时间:2019-10-09 15:47:33      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:tab   top   ipv4   system   systemctl   real   work   enforce   emc   

LVS服务器:192.168.200.111
[root@real ~]# iptables -F
[root@real ~]# systemctl stop firewalld
[root@real ~]# setenforce 0
[root@director ~]# yum -y install ipvsadm
[root@director ~]# ipvsadm -A -t 172.16.1.1:80 -s rr
[root@director ~]# ipvsadm -a -t 172.16.1.1:80 -r 192.168.200.112:80 -m -w 1
[root@director ~]# ipvsadm -a -t 172.16.1.1:80 -r 192.168.200.113:80 -m -w 1
[root@lvs ~]# ip a //配置两块网卡
ens32 inet 192.168.200.111/24
ens35 inet 172.16.1.1/24
[root@lvs ~]#echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.conf


real服务器:192.168.200.112
[root@real ~]# iptables -F
[root@real ~]# systemctl stop firewalld
[root@real ~]# setenforce 0
[root@real ~]# vim /etc/sysconfig/network-scrippts/ifcfg-ens32
将网关改为192.168.200.111
[root@real ~]# systemctl start network
[root@real ~]# yum -y install httpd
[root@real ~]# echo 111111 > /var/www/html/index.html
[root@real ~]# systemctl start httpd

real服务器 192.168.200.113 同上

LVS集群

标签:tab   top   ipv4   system   systemctl   real   work   enforce   emc   

原文地址:https://www.cnblogs.com/lyqlyqlyq/p/11641873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!