简介
haproxy
是一款功能强大、灵活好用反代软件,提供了高可用、负载均衡、后端服务器代理的功能,它在7层负载均衡方面的功能很强大(支持cookie
track
, header rewrite
等等),支持双机热备,支持虚拟主机,拥有非常不错的服务器健康检查功能,当其代理的后端服务器出现故障, HAProxy
会自动将该服务器摘除,故障恢复后再自动将该服务器加入;同时还提供直观的监控页面,可以清晰实时的监控服务集群的运行状况。
方法
1、安装haproxy
yum -y install haproxy
2、然后清空haproxy.cfg
文件内容
cd /etc/haproxy/
> haproxy.cfg
3、把下面的内容写入到haproxy.cfg
文件中
global
ulimit-n 51200
defaults
log global
mode tcp
option dontlognull
timeout connect 1000ms
timeout client 150000ms
timeout server 150000ms
listen status
bind 0.0.0.0:1080
mode http
log global
stats refresh 30s
stats uri /admin?stats
stats realm Private lands
stats auth admin:password
stats hide-version
frontend ssin
bind *:1000-2000
default_backend ssout
backend ssout
server server1 11.22.33.44 maxconn 204800
说明:bind *:1000-2000
这里指的是1000-2000
端口,11.22.33.44
为需要转发的服务器的IP
。
4、启动haproxy
服务
service haproxy start
最后别忘了在你的服务器里开放转发的端口。