haproxy搭建web群集

1.安装haproxy
1)安装依赖
在这里插入图片描述
解压缩
[root@centos test]# tar zxvf /mnt/haproxy-1.4.24.tar.gz -C /usr/src/

[root@centos test]# cd /usr/src/haproxy-1.4.24/
编译安装
[root@centos haproxy-1.4.24]# make TARGET=linux26
[root@centos haproxy-1.4.24]# make install
生成haproxy配置文件在这里插入图片描述
生成haproxy服务控制文件并设置权限
在这里插入图片描述
添加系统服务设置自启开启
在这里插入图片描述
创建服务启动临时目录
[root@centos ~]# vim /etc/haproxy/haproxy.cfg
global
log 127.0.0.1 local0
log 127.0.0.1 local1 notice
#log loghost local0 info
maxconn 4096
chroot /usr/share/haproxy
uid 99
gid 99
daemon
#debug
#quiet

defaults
log global
mode http
option httplog
option dontlognull
retries 3
redispatch
maxconn 2000
contimeout 5000
clitimeout 50000
srvtimeout 50000
listen appli1-rewrite 192.168.100.10:80
option httpchk /index.html
cookie SERVERID insert indirect nocache
server web1 192.168.100.10:80 check inter 2000 fall 3
server web2 192.168.100.20:80 check inter 2000 fall 3
启动服务
[root@centos ~]# ln -s /usr/src/haproxy-1.4.24/haproxy /usr/sbin/
[root@centos ~]# /etc/init.d/haproxy start
安装两台httpd
第一台
在这里插入图片描述
[root@centos ~]# echo “www.benet.com” > /var/www/html/index.html
[root@centos ~]# systemctl start httpd
第二台
在这里插入图片描述
[root@centos2~]# echo “www.accp.com” > /var/www/html/index.html
[root@centos2~]# systemctl start httpd
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值