使用Haproxy
Haproxy是目前比较流行的一种集群调度工具 四层负载均衡;七层负载均衡;
Haproxy 与LVS、Nginx的比较
LVS性能最好,但是搭建相对复杂 四层负载均衡
Nginx的upstream模块支持集群功能,但是对集群节点健康检查功能不强,性能没有Haproxy好 七层负载均衡
比较:
Nginx:
网络稳定性的依赖非常小,承担高负载压力且稳定,
负载均衡和反向代理,可以作为中层反向代理使用
LVS:
抗负载能力强,高可用,高性能
Haproxy:
支持tcp协议的负载均衡转发,负载均衡策略多
LVS的负载调度算法:
轮询(RR),加权轮询(WRR),最少连接(LC),加权最少连接(WLC)
Nginx的负载调度算法:
轮询(RR),IP-HASH(基于来源IP地址),URL-HASH(基于来源url地址),Fair(智能)
Haproxy的负载调度算法:
轮询(RR),最小连接数(LC),基于来源访问调度(SH)
HTTP请求方式:
GET方式
POST方式
返回状态码
正常的状态码为1xx信息提示、2××成功、3××重定向
异常的状态码为4××请求错误、5××服务器错误
实验
-----client---------haproxy-------Nginx1---------Nginx2------
| | | |
192.168.1.254 192.168.1.1 192.168.1.2 192.168.1.3
一、安装Nginx (两个安装相同)
[root@localhost ~]# yum -y install pcre-devel zlib-devel
[root@localhost ~]# useradd -M -s /sbin/nologin nginx
[root@localhost ~]# tar -zxvf nginx-1.6.0.tar.gz -C /usr/src/
[root@localhost ~]# cd /usr/src/nginx-1.6.0/
[root@localhost nginx-1.6.0]# ./configure --prefix=/usr/local/nginx --user=nginx
--group=nginx --with-file-aio --with-http_stub_status_module
--with-http_gzip_static_module --with-http_flv_module --with-http_ssl_module
[root@localhost nginx-1.6.0]# make && make install
[root@localhost ~]# ln -s /usr/local/nginx/sbin/* /usr/local/sbin/
[root@localhost ~]# nginx -t
[root@localhost ~]# nginx
[root@localhost ~]# netstat -anpt | grep 80
[root@localhost ~]# killall -s HUP nginx //重新加载
[root@localhost ~]# killall -s QUIT nginx //关闭服务
[root@localhost ~]# nginx
WEB——1:
[root@localhost ~]#echo "192.168.1.2 web server" >
/usr/local/nginx/html/index.html
web——2:
[root@localhost ~]#echo "192.168.1.3 web server" >
/usr/local/nginx/html/index.html
二、安装haproxy
1、安装
[root@localhost ~]# yum -y install pcre-devel zlib-devel
[root@localhost ~]# tar -zxvf haproxy-1.4.24.tar.gz -C /usr/src/
[root@localhost ~]# cd /usr/src/haproxy-1.4.24/
[root@localhost ~]# make TARGET=linux26 PREFIX=/usr/local/haproxy
注意:linux26是指linux的内核版本号。
[root@localhost ~]# make install PREFIX=/usr/local/haproxy
2、配置haproxy
[root@localhost ~]# mkdir /etc/haproxy 创建配置文件目录
[root@localhost ~]# cp /usr/src/haproxy-1.4.24/examples/haproxy.cfg /etc/haproxy/
将配置文件复制到配置文件目录
[root@localhost ~]# vim /etc/haproxy/haproxy.cfg
修改:
#配置介绍haproxy配置文件通常分为三个部分,即global、default和listen。global为全局配置,defaults为默认配置,listen为应用组件配置
global
log 127.0.0.1 local0 //配置日志记录,local0为日志设备,默认放到系统日志
log 127.0.0.1 local1 notice //notice为日志级别,通常有24个级别
#log loghost local0 info
maxconn 4096 //最大连接数
chroot /usr/share/haproxy 禁锢
uid 99 用户
gid 99 用户
#debug
#quiet
defaults
log global 定义日志为global配置中的日志定义
mode http 模式为http
option httplog 采用http日志格式记录日志
retries 3 检查节点服务器失败次数,连续达到三次失败,则认为节点不可用
#redispatch
maxconn 2000 最大连接数
contimeout 50 连接超时时间
clitimeout 50 客户端超时时间
srvtimeout 50 服务器超时时间
listen webcluster 0.0.0.0:80 定义一个webcluster的应用
option httpchk GET /index.html 注意:可以删除
balance roundrobin 负载均衡调度算法使用轮询算法
server inst1 192.168.1.2:80 check inter 2000 fall 3 //定义在线节点
server inst2 192.168.1.3:80 check inter 2000 fall 3
3、启动haproxy
[root@localhost ~]# ln -s /usr/local/haproxy/sbin/* /usr/sbin/ //注意软链接的目录
[root@localhost ~]# cp /usr/src/haproxy-1.4.24/examples/haproxy.init /etc/init.d/haproxy
[root@localhost ~]# chmod +x /etc/init.d/haproxy
[root@localhost ~]# /etc/init.d/haproxy start
[root@localhost ~]# /etc/init.d/haproxy status
[root@localhost ~]# netstat -anp | grep haproxy //占用的也是TCP的80端口
[root@localhost ~]# chkconfig --add haproxy
[root@localhost ~]# chkconfig haproxy on
注意:
如果启动时出现报错:/haproxy.main()] Cannot chroot(/usr/share/haproxy)
则手动创建:
[root@localhost ~]# mkdir /usr/share/haproxy
如果启动时出现报错:Starting proxy cacti: cannot bind socket
则执行:
[root@localhost ~]# sysctl -e
net.ipv4.ip_nonlocal_bind=1
三、验证:
客户端输入:
http://192.168.1.1/
注意:haproxy本身是没有日志文件,为此需要配置生成。