HAProxy源码编译安装与配置实践

一,什么是haproxy
HAProxy提供高可用性、负载均衡以及基于TCP和HTTP应用的代理,其处理能力比Nginx弱一些,一般适用于访问量并发在1万以下的小型集群,自带的一些健康检查,session保留等功能非常实用。

二,安装haproxy
# wget http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.20.tar.gz
# tar zxvf haproxy-1.4.20.tar.gz
# cd haproxy-1.4.20
# uname -a //查看linux内核版本
# make TARGET=linux26 PREFIX=/opt/haproxy
# make install PREFIX=/opt/haproxy

三,配置haproxy
# mkdir -p /opt/haproxy/conf
# vim /opt/haproxy/conf/haproxy.conf
01 global
02 maxconn 5120 #限制单个进程的最大连接数
03 chroot /opt/haproxy
04 uid 99 #所属运行用户,默认99为nobody
05 gid 99 #所属运行用户组,默认99为nobody
06 daemon #让进程作为守护进程在后台运行
07 quiet
08 nbproc 2 #指定作为守护进程运行时的进程数
09 pidfile /opt/haproxy/run/haproxy.pid
10
11 defaults
12 log global
13 mode http
14 option httplog
15 option dontlognull #不记录空连接
16 log 127.0.0.1 local3 info #日志级别[err warning info debug]
17 retries 3 #设置在一个服务器上链接失败后的重连次数
18 option redispatch #在连接失败或断开的情况下,允许当前会话被重新分发
19 maxconn 2000 #可被发送到后端服务器的最大并发连接数
20 contimeout 5000ms #设置等待连接到服务器成功的最大时间
21 clitimeout 50000ms #设置客户端的最大超时时间
22 srvtimeout 50000ms #设置服务器端的最大超时时间
23
24 listen cluster 0.0.0.0:80 #运行的端口及主机名
25 mode http #使用http的7层模式
26 balance roundrobin #设置服务器负载分配算法
27 option httpclose
28 option forwardfor
29 option httpchk GET /keepalive.html #健康检测页面
30 server webapp1 192.168.35.134:80 weight 1 check inter 2000 rise 2 fall 3
31 server webapp2 192.168.35.135:80 weight 1 check inter 2000 rise 2 fall 3
32 server webapp3 192.168.35.136:80 weight 1 check inter 2000 rise 2 fall 3
33 server webapp4 192.168.35.137:80 weight 1 check inter 2000 rise 2 fall 3
34 # weight – 调节服务器的负重
35 # check – 允许对该服务器进行健康检查
36 # inter – 设置连续的两次健康检查之间的时间,单位为毫秒(ms),默认值 2000(ms)
37 # rise – 指定多少次连续成功的健康检查后,即可认定该服务器处于可操作状态,默认值 2
38 # fall – 指定多少次不成功的健康检查后,认为服务器为当掉状态,默认值 3
39 # maxconn – 指定可被发送到该服务器的最大并发连接数
40
41 listen localhost 0.0.0.0:8888 #监控页面的端口
42 mode http
43 transparent
44 stats refresh 30s #统计页面自动刷新时间
45 stats uri /haproxy-stats #监控页面的访问地址
46 stats realm Haproxy statistic #统计页面密码框上提示文本
47 stats auth haproxyadmin:haproxypass #统计页面用户名和密码设置
48 stats hide-version #隐藏统计页面上HAProxy的版本信息

四,配置haproxy服务脚本
# mkdir /opt/haproxy/init.d/
# mkdir -p /opt/haproxy/run/
# vim /opt/haproxy/init.d/haproxy
01 #! /bin/sh
02
03 PROGDIR=/opt/haproxy
04 PROGNAME=haproxy
05 DAEMON=$PROGDIR/sbin/$PROGNAME
06 CONFIG=$PROGDIR/conf/$PROGNAME.conf
07 PIDFILE=$PROGDIR/run/$PROGNAME.pid
08 DESC=”HAProxy daemon”
09 SCRIPTNAME=/opt/haproxy/init.d/$PROGNAME
10
11 # Gracefully exit if the package has been removed.
12 test -x $DAEMON || exit 0
13
14 start()
15 {
16 echo -n “Starting $DESC: $PROGNAME”
17 $DAEMON -f $CONFIG
18 echo “.”
19 }
20
21 stop()
22 {
23 echo -n “Stopping $DESC: $PROGNAME”
24 cat $PIDFILE | xargs kill
25 echo “.”
26 }
27
28 case “$1” in
29 start)
30 start
31 ;;
32 stop)
33 stop
34 ;;
35 *)
36 echo “Usage: $SCRIPTNAME {start|stop}” >&2
37 exit 1
38 ;;
39 esac
40 exit 0

# chmod +x /opt/haproxy/init.d/haproxy

#启动haproxy
# /opt/haproxy/init.d/haproxy start

通过统计监听页面,可以看到后端服务器的状态:

http://192.168.35.133:8888/haproxy-stats

通过浏览器直接访问http://192.168.35.133,可以发现,在多次刷新之后,请求会随机分配到后端的Web服务器上。

五,配置haproxy日志
# mkdir /opt/haproxy/log
# touch /opt/haproxy/log/haproxy.log

# vim /etc/sysconfig/syslog
修改以下配置:

SYSLOGD_OPTIONS=”-m 0 -r -x”

# vim /etc/syslog.conf
添加以下配置:

local3.* /opt/haproxy/log/haproxy.log

# /etc/init.d/syslog restart

# /opt/haproxy/init.d/haproxy stop
# /opt/haproxy/init.d/haproxy start