简介
Haproxy是一个使用C语言编写的自由及开放源代码软件,其提供高可用性、负载均衡,以及基于TCP和HTTP的应用程序代理。Haproxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理。Haproxy运行在当前的硬件上,完全可以支持数以万计的并发连接。并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的web服务器不被暴露到网络上。
Haproxy调度算法原理
一、RR(Round Robin)。轮询调度
理解举例:
有三个节点A、B、C,第一个用户访问会被指派到节点A,第二个用户访问会被指派到节点B,第三个用户访问会被指派到节点C,第四个用户访问继续指派到节点A,轮询分配访问请求实现负载均衡效果。此算法还有一种加权轮询即根据每个节点的权重轮询分配访问请求
二、LC(Least Connections)。LC算法即最小连接数算法,根据后端的节点连接数大小动态分配前端请求
理解举例:
有三个节点A、B、C,各节点的连接数分别为A:4、B:5、C:6,此时如果有第一个用户连接请求,会被指派到A上,连接数变为A:5、B:5、C:6;第二个用户请求会继续分到A上,连接数变为A:6、B:5、C:6;再有新的请求会分配给B,每次将新的请求指派给连接数最小的客户端。由于实际情况下A、B、C的连接数会动态释放很难会出现一样连接数的情况,因此此算法相比较rr算法有很大改进,是目前用到比较多的一种算法
三、SH(Source Hashing)。SH即基于来源访问调度算法,此算法用于一些有Session会话记录在服务器端的场景,可以基于来源的IP、 Cookie等做集群调度
理解举例:
使用基于源P的集群调度算法,有个节点A、B、C,第一个用户第一次访问被指派到了A,第二个用户第一次访问被指派到了B,当第一个用户第二次访问时会被继续指派到A,第二个用户第二次访问时依旧会被指派到B,只要负载均衡调度器不重启,第一个用户访问都会被指派到A,第二个用户访问都会被指派到B,实现集群的调度。此调度算法好处是实现会话保持,但某些IP访问量非常大时会引起负载不均衡,部分节点访问量超大,影响业务使用
实验拓扑
实验环境
主机 | 操作系统 | IP地址 | 主要软件 |
---|---|---|---|
Haproxy服务器 | CentOS 7.4 x86_64 | 192.168.100.71 | haproxy-1.4.24.tar.gz |
Nginx服务器01 | CentOS 7.4 x86_64 | 192.168.100.72 | nginx-1.12.0.tar.gz |
Nginx服务器02 | CentOS 7.4 x86_64 | 192.168.100.73 | nginx-1.12.0.tar.gz |
Client端 | CentOS 7.4 x86_64 | 192.168.100.74 |
搭建步骤
一、Ngixn服务器01配置
1、安装相关依赖包
[[email protected]_2 ~]# yum -y install gcc gcc-c++
[[email protected]_2 ~]# yum -y install pcre-devel zlib-devel
2、创建Nginx进程用户
[[email protected]_2 ~]# useradd -M -s /sbin/nologin nginx
3、源码安装Nginx
[[email protected]_2 ~]# tar xvfz nginx-1.12.0.tar.gz
[[email protected]_2 ~]# cd nginx-1.12.0/
[[email protected]_2 nginx-1.12.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx
[[email protected]_2 nginx-1.12.0]# make && make install
4、优化路径
[[email protected]_2 ~]# ln -s /usr/local/nginx/sbin/nginx /usr/sbin/
5、编辑站点首页
[[email protected]_2 ~]# cd /usr/local/nginx/html/
[[email protected]_2 html]# echo "Welcome to Nginx AAAAAAAAAA" > index.html
6、启动Nginx
[[email protected]_2 ~]# nginx
[[email protected]_2 ~]# netstat -anpt | grep ":80"
二、Ngixn服务器02配置
配置方法与Ngixn服务器01相同的地方略……
1、编辑站点首页
[[email protected]_3 ~]# cd /usr/local/nginx/html/
[[email protected]_3 html]# echo "Welcome to Nginx BBBBBBBBBB" > index.html
三、测试页面
四、Haproxy服务器配置
1、安装相关依赖包
[[email protected]_1 ~]# yum -y install gcc gcc-c++
[[email protected]_1 ~]# yum -y install pcre-devel zlib-devel
2、安装Haproxy
[[email protected]_1 ~]# tar zxvf haproxy-1.4.24.tar.gz
[[email protected]_1 ~]# cd haproxy-1.4.24/
[[email protected]_1 haproxy-1.4.24]# make TARGET=linux26 #TARGET代表64位的操作系统
[[email protected]_1 haproxy-1.4.24]# make install
3、建立Haproxy配置文件
[[email protected]_1 ~]# mkdir /etc/haproxy
[[email protected]_1 ~]# cd haproxy-1.4.24/examples/
[[email protected]_1 examples]# cp haproxy.cfg /etc/haproxy/
4、配置文件详解
[[email protected]_1 ~]# vim /etc/haproxy/haproxy.cfg
全局配置
global
log 127.0.0.1 local0 #配置日志记录,local0为日志设备,默认存放到系统日志
log 127.0.0.1 local1 notice #notice为日志级别,通常有24个级别
maxconn 4096 #最大连接数
chroot /usr/share/haproxy
uid 99 #用户uid
gid 99 #用户gid
daemon默认配置
defaults
log global #定义日志为global配置中的日志定义
mode http #模式为http
option httplog #采用http日志格式记录日志
option dontlognull
retries 3 #检查节点服务器失败次数,连续达到三次失败,则认为节点不可用
option redispatch
maxconn 2000 #最大连接数
contimeout 5000 #连接超时时间
clitimeout 50000 #客户端超时时间
srvtimeout 50000 #服务器超时时间应用组件配置
listen webcluster 0.0.0.0:80 #定义webcluster 应用
option httpchk GET /index.html #检查服务器的index.html
option persist #强制将请求发送到已经down掉的服务器
balance roundrobin #负载均衡调度算法使用轮询算法
server inst1 192.168.100.72:80 check inter 2000 fall 3 #定义在线节点
server inst2 192.168.100.73:80 check inter 2000 fall 3
5、优化路径,并启动Haproxy服务
[[email protected]_1 ~]# cp haproxy-1.4.24/examples/haproxy.init /etc/init.d/haproxy
[[email protected]_1 ~]# ln -s /usr/local/sbin/haproxy /usr/sbin/haproxy
[[email protected]_1 ~]# chmod +x /etc/init.d/haproxy
[[email protected]_1 ~]# mkdir /usr/share/haproxy
[[email protected]_1 ~]# service haproxy start
五、测试Haproxy集群
六、配置Haproxy日志管理
1、编辑haproxy配置文件
[[email protected]_1 ~]# vim /etc/haproxy/haproxy.cfg
添加以下参数:
log /dev/log local0 info
log /dev/log local0 notice
[[email protected]_1 ~]# systemctl restart haproxy.service #重启haproxy服务
2、修改rsyslog配置
[[email protected]_1 ~]# touch /etc/rsyslog.d/haproxy.conf #创建独立配置文件
[[email protected]_1 ~]# vim /etc/rsyslog.d/haproxy.conf
添加以下参数:
if ($programname == ‘haproxy‘ and $syslogseverity-text == ‘info‘)
then -/var/log/haproxy/haproxy-info.log #info日志记录路径
&~
if ($programname == ‘haproxy‘ and $syslogseverity-text == ‘notice‘)
then -/var/log/haproxy/haproxy-notice.log #notice日志记录路径
&~ #"&~"当日志写入到日志文件中后,rsyslog停止处理此信息
3、保存配置文件并启动rsyslog
[[email protected]_1 ~]# systemctl start rsyslog.service
4、查看日志
[[email protected] ~]# cd /var/log/haproxy/
[[email protected] haproxy]# ls
原文地址:http://blog.51cto.com/11905606/2165101