LVS在企业应用中抗负载能力很强,但存在不足
Haproxy是一款可提供高可用性、负载均衡、及基于TCP和HTTP应用的代理的软件
Haproxy支持多种调度算法,最常见的有三种
1、实验环境
主机名 | IP地址 |
---|---|
客户端 | 192.168.150.128 |
haproxy | 192.168.150.147 |
nginx1 | 192.168.150.148 |
nginx2 | 192.168.150.158 |
2、在两台web网站上安装nginx服务器
(1)安装基础软件包
[root@nginx1 ~]# yum install gcc gcc-c++ pcre-devel zlib-devel make -y
(2)创建系统用户账号nginx
[root@nginx1 ~]# useradd -M -s /sbin/nologin nginx
(3)编译安装nginx服务
[root@nginx1 LNMP-C7]# tar zxvf nginx-1.12.2.tar.gz -C /opt
[root@nginx1 LNMP-C7]# cd /opt/nginx-1.12.2/
[root@nginx1 nginx-1.12.2]# ./configure \
> --prefix=/usr/local/nginx \
> --user=nginx \
> --group=nginx
[root@nginx1 nginx-1.12.2]# make && make install
(4)编辑网页内容,注意测试网页的内容不能一样,以便进行测试
[root@nginx2 nginx-1.12.2]# cd /usr/local/nginx/html/
[root@nginx2 html]# vim test.html
this is aaa test web
(5)创建软连接,启动服务,关闭防火墙功能
[root@nginx2 html]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
[root@nginx2 html]# nginx
[root@nginx2 html]# systemctl stop firewalld.service
[root@nginx2 html]# setenforce 0
3、安装haproxy服务器
(1)安装基础软件包
[root@haproxy ~]# yum install gcc gcc-c++ pcre-devel bzip2-devel make -y
(2)编译安装haproxy服务
[root@haproxy Y2C7]# tar zxvf haproxy-1.5.19.tar.gz -C /opt
[root@haproxy Y2C7]# cd /opt/haproxy-1.5.19
[root@haproxy haproxy-1.5.19]# make TARGET=linux26
[root@haproxy haproxy-1.5.19]# make install
(3)建立haproxy的配置文件
[root@haproxy haproxy-1.5.19]# mkdir /etc/haproxy
[root@haproxy haproxy-1.5.19]# cp examples/haproxy.cfg /etc/haproxy/
[root@haproxy haproxy-1.5.19]# cd /etc/haproxy/
[root@haproxy haproxy]# vim haproxy.cfg
#注释chroot /usr/local/haproxy
#注释redispach
#删除原有的listen,重新添加
listen webcluster 0.0.0.0:80
option httpchk GET /test.html
server inst1 192.168.7.148:80 check inter 2000 fall 3
server inst1 192.168.7.158:80 check inter 2000 fall 3
(4)将源码包提供的启动脚本复制到/etc/init.d目录下,并添加到server服务中,启动haproxy服务
[root@haproxy haproxy]# cp /opt/haproxy-1.5.19/examples/haproxy.init /etc/init.d/haproxy
[root@haproxy haproxy]# chmod +x /etc/init.d/haproxy
[root@haproxy haproxy]# chkconfig --add /etc/init.d/haproxy
[root@haproxy haproxy]# ln -s /usr/local/sbin/haproxy /usr/sbin/
[root@haproxy haproxy]# service haproxy start
(5)网页测试,使用客户端访问网址:http://192.168.150.147/test.html
4、日志定义
(1)修改haproxy配置文件中关于日志配置的选项
[root@haproxy sbin]# vim /etc/haproxy/haproxy.cfg
log /dev/log local0 info
log /dev/log local1 notice
#重启haproxy服务
[root@haproxy sbin]# service haproxy restart
Restarting haproxy (via systemctl): [ 确定 ]
(2)修改rsyslog配置将haproxy相关的配置独立定义到haproxy.conf,并放到/etc/rsyslog.d/下,重启rsyslog服务
[root@haproxy sbin]# vim /etc/rsyslog.d/haproxy.conf
if ($programname == 'haproxy' and $syslogseverity-text == 'info')
then -/var/log/haproxy/haproxy-info.log
&~
if ($programname == 'haproxy' and $syslogseverity-text == 'notice')
then -/var/log/haproxy/haproxy-notice.log
&~
[root@haproxy sbin]# systemctl restart rsyslog.service