1.以rpm包方式安装haproxy
#yum -y install haproxy
2.查看haproxy安装生成那些文件
#rpm -ql haproxy
3.haproxy命令选项:
syntax:haproxy [-f < 配置文件>] [ -vdVD ] [-n 最大并发连接总数] [-N 每个侦听的最大并发数] [ -p <当前的PID文件> ] [-m <内存限制M>] [-h <命令帮助H>]
-v 显示当前版本信息;-vv 显示已知的创建选项
-d 前台,debug模式;-db 禁用后台模式,程序跑在前台
-V 详细模式
-D daemon模式启动
-q 安静模式,不输出信息
-c 对配置文件进行语法检查
-f 指定配置文件路径
-n 最大并发连接总数
-m 限制的可用内存大小
-N 设置默认的连接数
-p 设置当前的PID文件
-de 不使用epoll
-ds 不使用speculative epoll
-dp 不使用poll
-sf 程序启动后向pidlist里的进程发送FINISH信号,这个参数放在命令行的最后
-st 程序启动后向pidlist里的进程发送TERMINATE信号,这个参数放在命令行的最后
4.查看rpm安装的默认配置文件/etc/haproxy/haproxy.cfg
#--------------------------------------------------------------------- # Example configuration for a possible web application. See the # full configuration options online. # # http://haproxy.1wt.eu/download/1.3/doc/configuration.txt # #--------------------------------------------------------------------- #--------------------------------------------------------------------- # Global settings #--------------------------------------------------------------------- global log 127.0.0.1 local2 ###[err warning info debug] chroot /var/lib/haproxy pidfile /var/run/haproxy.pid ###haproxy的pid存放路径,启动进程的用户必须有权限访问此文件 maxconn 4000 ###最大连接数,默认4000 user haproxy group haproxy daemon ###创建1个进程进入deamon模式运行。此参数要求将运行模式设置为"daemon" #--------------------------------------------------------------------- # common defaults that all the ‘listen‘ and ‘backend‘ sections will # use if not designated in their block #--------------------------------------------------------------------- defaults mode http ###默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK log global ###采用全局定义的日志 option dontlognull ###不记录健康检查的日志信息 option httpclose ###每次请求完毕后主动关闭http通道 option httplog ###日志类别http日志格式 option forwardfor ###如果后端服务器需要获得客户端真实ip需要配置的参数,可以从Http Header中获得客户端ip option redispatch ###serverId对应的服务器挂掉后,强制定向到其他健康的服务器 timeout connect 10000 #default 10 second timeout if a backend is not found timeout client 300000 ###客户端连接超时 timeout server 300000 ###服务器连接超时 maxconn 60000 ###最大连接数 retries 3 ###3次连接失败就认为服务不可用,也可以通过后面设置 #--------------------------------------------------------------------- # main frontend which proxys to the backends #--------------------------------------------------------------------- frontend main *:5000 acl url_static path_beg -i /static /images /javascript /stylesheets acl url_static path_end -i .jpg .gif .png .css .js use_backend static if url_static ###满足策略要求,则响应策略定义的backend页面 default_backend app ###不满足则响应backend的默认页面 #--------------------------------------------------------------------- # static backend for serving up images, stylesheets and such #--------------------------------------------------------------------- backend static balance roundrobin ###负载均衡模式轮询 server static 127.0.0.1:4331 check ###后端服务器定义 #--------------------------------------------------------------------- # round robin balancing between the various backends #--------------------------------------------------------------------- backend app balance roundrobin ###负载均衡模式轮询 server app1 127.0.0.1:5001 check ###后端服务器定义,check进行健康检查 server app2 127.0.0.1:5002 check server app3 127.0.0.1:5003 check server app4 127.0.0.1:5004 check
5.配置haproxy的日志(默认是不会生成日志文件的)
RHEL5.8
#vim /etc/sysconfig/syslog
SYSLOGD_OPTIONS="-c 2 -r"
#vim /etc/syslog.conf
local2.* /var/log/haproxy.log ###在文件的最后添加一行
#service syslog restart ###重启系统日志服务使其生效
PS:原因是在5.8的系统上没有默认安装rsyslog,所以配置方式不一样
RHEL6.4
#vim /etc/sysconfig/rsyslog
SYSLOGD_OPTIONS="-c 2 -r"
#vim /etc/rsyslog.conf
local2.* /var/log/haproxy.log ###在文件的最后添加一行
#service rsyslog restart ###重启系统日志服务使其生效
6.使用命令检查配置文件是否正确
#haproxy -c -f /etc/haproxy/haproxy.cfg
7.启动服务
#service haproxy start
8.验证是否启动成功
#netstat -tnulp | grep haproxy
9.实现负载均衡配置
测试环境:
OS:RHEL6.4
192.168.10.114 haproxy服务实现负载均衡和反向代理的功能
192.168.10.115 httpd服务web服务器 (安装httpd即可这里不再赘述,仅做测试使用)
192.168.10.116 httpd服务web服务器 (安装httpd即可这里不再赘述,仅做测试使用)
10.修改haproxy的配置文件实现负载均衡和方向代理的功能
#--------------------------------------------------------------------- # Example configuration for a possible web application. See the # full configuration options online. # # http://haproxy.1wt.eu/download/1.3/doc/configuration.txt # #--------------------------------------------------------------------- #--------------------------------------------------------------------- # Global settings 全局配置 #--------------------------------------------------------------------- global log 127.0.0.1 local2 ###[err warning info debug] chroot /var/lib/haproxy pidfile /var/run/haproxy.pid ###haproxy的pid存放路径,启动进程的用户必须有权限访问此文件 maxconn 4000 ###最大连接数,默认4000 user haproxy group haproxy daemon ###创建1个进程进入deamon模式运行。此参数要求将运行模式设置为"daemon" #--------------------------------------------------------------------- # Proxy settings 默认代理配置 #--------------------------------------------------------------------- defaults ###配置默认参数的,这些参数可以被利用配置到frontend,backend,listen段中 mode http #默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK(注,health已经废弃) log global #采用全局定义的日志 option httplog #日志类别http日志格式 option dontlognull #不记录健康检查的日志信息 option http-server-close #每次请求完毕后主动关闭http通道 option forwardfor except 127.0.0.0/8 #不记录本机转发的日志 option redispatch #serverId对应的服务器挂掉后,强制定向到其他健康的服务器 retries 3 #3次连接失败就认为服务不可用,也可以通过后面设置 timeout http-request 10s #请求超时 timeout queue 1m #队列超时 timeout connect 10s #连接超时 timeout client 1m #客户端连接超时 timeout server 1m #服务器连接超时 timeout http-keep-alive 10s #长连接超时 timeout check 10s #检查超时 maxconn 30000#最大连接数 #--------------------------------------------------------------------- # listen stats settings haproxy监控配置 #--------------------------------------------------------------------- listen stats #listen是Frontend和Backend的组合体。 mode http #模式http bind 0.0.0.0:1080 #绑定的监控ip与端口 stats enable #启用监控 stats hide-version #隐藏haproxy版本 stats uri /haproxyadmin?stats #定义的uri stats realm Haproxy\ Statistics #定义显示文字 stats auth admin:admin #认证用户名和密码 stats admin if TRUE #--------------------------------------------------------------------- # frontend http-in settings 前端服务监控配置 #--------------------------------------------------------------------- frontend http-in #接收请求的前端虚拟节点,Frontend可以根据规则直接指定具体使用后端的 backend(可动态选择)。这里定义的是http服务! bind *:80 #绑定的监控ip与端口 mode http #模式http log global #定义日志 option httpclose #每次请求完毕后主动关闭http通道 option logasap #提前将HTTP请求记入日志 option dontlognull #不记录健康检查的日志信息 capture request header Host len 20 capture request header Referer len 60 default_backend servers #定义的默认backend服务器组 #--------------------------------------------------------------------- # frontend healthcheck settings 后端服务组健康状态检查配置 #--------------------------------------------------------------------- frontend healthcheck bind *:1099 mode http option httpclose option forwardfor default_backend servers #--------------------------------------------------------------------- # backend servers settings 后端服务器组配置 #--------------------------------------------------------------------- backend servers #后端服务集群的配置,一个Backend对应一个或者多个实体服务器。 balance roundrobin #负载均衡方式为轮询 server websrv1 192.168.10.115:80 check maxconn 2000 server websrv2 192.168.10.116:80 check maxconn 2000
11.重启haproxy服务
#service haproxy restart
12.在客户端浏览器上访问192.168.10.114:1080/haproxyadmin?stats 使用haproxy监控工具
本文出自 “珞辰的博客” 博客,请务必保留此出处http://luochen2015.blog.51cto.com/9772274/1700669
原文地址:http://luochen2015.blog.51cto.com/9772274/1700669