###########全局配置#########
global
log 127.0.0.1 local2 #[日志输出配置,所有日志都记录在本机,通过local0输出]
log 127.0.0.1 local1 notice #定义haproxy 日志级别[error warringinfo debug]
daemon #以后台形式运行harpoxy
#nbproc 1 #设置进程数量
nbproc 23
cpu-map 1 1
cpu-map 2 2
cpu-map 3 3
cpu-map 4 4
cpu-map 5 5
cpu-map 6 6
cpu-map 7 7
cpu-map 8 8
cpu-map 9 9
cpu-map 10 10
cpu-map 11 11
cpu-map 12 12
cpu-map 13 13
cpu-map 14 14
cpu-map 15 15
cpu-map 16 16
cpu-map 17 17
cpu-map 18 18
cpu-map 19 19
cpu-map 20 20
cpu-map 21 21
cpu-map 22 22
cpu-map 23 23
stats bind-process 23
maxconnrate 100000000
maxconn 500000 #默认最大连接数,需考虑ulimit-n限制
#maxconnrate <number>:设定单haproxy进程每秒接受的连接数
#user haproxy #运行haproxy的用户
#group haproxy #运行haproxy的用户所在的组
pidfile /var/run/haproxy.pid #haproxy 进程PID文件
#10000029
ulimit-n 1048576 #ulimit 的数量限制
chroot /usr/share/haproxy #chroot运行路径
#debug #haproxy 调试级别,建议只在开启单进程的时候调试
#quiet
########默认配置############
defaults
log global
mode tcp
option tcplog
option dontlognull
maxconn 500000
#mode http #默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK
#option httplog #日志类别,采用httplog
#option dontlognull #不记录健康检查日志信息
retries 3 #两次连接失败就认为是服务器不可用,也可以通过后面设置
#option forwardfor #如果后端服务器需要获得客户端真实ip需要配置的参数,可以从Http Header中获得客户端ip
#option httpclose #每次请求完毕后主动关闭http通道,haproxy不支持keep-alive,只能模拟这种模式的实现
#option redispatch #当serverId对应的服务器挂掉后,强制定向到其他健康的服务器,以后将不支持
#option abortonclose #当服务器负载很高的时候,自动结束掉当前队列处理比较久的链接
#maxconn 4096 #默认的最大连接数
timeout connect 5000ms #连接超时
timeout client 30000ms #客户端超时
timeout server 30000ms #服务器超时
timeout check 20000 #心跳检测超时
#timeout http-keep-alive10s #默认持久连接超时时间
#timeout http-request 10s #默认http请求超时时间
#timeout queue 1m #默认队列超时时间
balance roundrobin #设置默认负载均衡方式,轮询方式
#balance source #设置默认负载均衡方式,类似于nginx的ip_hash
#balnace leastconn #设置默认负载均衡方式,最小连接数
########统计页面配置########
listen stats
bind-process 3
bind 0.0.0.0:1080 #设置Frontend和Backend的组合体,监控组的名称,按需要自定义名称
mode http #http的7层模式
option httplog #采用http日志格式
log 127.0.0.1 local0 err #错误日志记录
maxconn 100000 #默认的最大连接数
stats refresh 30s #统计页面自动刷新时间
stats uri /stats #统计页面url
stats realm XingCloud\ Haproxy #统计页面密码框上提示文本
stats auth admin:admin #设置监控页面的用户和密码:admin,可以设置多个用户名
#stats auth Frank:Frank #设置监控页面的用户和密码:Frank
stats hide-version #隐藏统计页面上HAProxy的版本信息
stats admin if TRUE #设置手工启动/禁用,后端服务器(haproxy-1.4.9以后版本)
########设置haproxy 错误页面#####
errorfile 403 /usr/local/haproxy/errorfiles/403.http
errorfile 500 /usr/local/haproxy/errorfiles/500.http
errorfile 502 /usr/local/haproxy/errorfiles/502.http
errorfile 503 /usr/local/haproxy/errorfiles/503.http
errorfile 504 /usr/local/haproxy/errorfiles/504.http
#################HAProxy的日志记录内容设置###################
capture request header Host len 40
capture request header Content-Length len 10
capture request header Referer len 200
capture response header Server len 40
capture response header Content-Length len 10
capture response header Cache-Control len 8
########frontend前端配置##############
frontend main
maxconn 6000000
bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
bind *:1081 #这里建议使用bind *:80的方式,要不然做集群高可用的时候有问题,vip切换到其他机器就不能访问了。
#acl web hdr(host) -i www.abc.com #acl后面是规则名称,-i为忽略大小写,后面跟的是要访问的域名,如果访问www.abc.com这个域名,就触发web规则,。
#acl img hdr(host) -i img.abc.com #如果访问img.abc.com这个域名,就触发img规则。
#use_backend webserver if web #如果上面定义的web规则被触发,即访问www.abc.com,就将请求分发到webserver这个作用域。
#use_backend imgserver if img #如果上面定义的img规则被触发,即访问img.abc.com,就将请求分发到imgserver这个作用域。
#default_backend dynamic #不满足则响应backend的默认页面
default_backend dynamic #不满足则响应backend的默认页面
########backend后端配置##############
#backend webserver #webserver作用域
#mode http
#balance roundrobin #balance roundrobin 负载轮询,balance source 保存session值,支持static-rr,leastconn,first,uri等参数
#option httpchk /index.html HTTP/1.0 #健康检查, 检测文件,如果分发到后台index.html访问不到就不再分发给它
#server web1 10.16.0.9:8085 cookie 1 weight 5 check inter 2000 rise 2 fall 3
#server web2 10.16.0.10:8085 cookie 2 weight 3 check inter 2000 rise 2 fall 3
#cookie 1表示serverid为1,check inter 1500 是检测心跳频率
#rise 2是2次正确认为服务器可用,fall 3是3次失败认为服务器不可用,weight代表权重
#backend imgserver
#mode http
#option httpchk /index.php
#balance roundrobin
#server img01 192.168.137.101:80 check inter 2000 fall 3
#server img02 192.168.137.102:80 check inter 2000 fall 3
backend dynamic
mode tcp
option tcplog #采用tcp日志格式
#bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
balance roundrobin
server s1 10.15x.58.1x3:1883 weight 10 check inter 2000 rise 2 fall 3 maxconn 2000000 maxqueue 10000000
listen emqttd
bind 0.0.0.0:1081
mode tcp
option tcplog #采用tcp日志格式
bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
balance roundrobin
#log 127.0.0.1 local0 debug
server s1 10.15x.58.1x3:1883 weight 10 check inter 2000 rise 2 fall 3
server s2 10.15x.58.1x4:1883 weight 10 check inter 2000 rise 2 fall 3
server s3 10.15x.58.1x5:1883 weight 10 check inter 2000 rise 2 fall 3
global
log 127.0.0.1 local2 #[日志输出配置,所有日志都记录在本机,通过local0输出]
log 127.0.0.1 local1 notice #定义haproxy 日志级别[error warringinfo debug]
daemon #以后台形式运行harpoxy
#nbproc 1 #设置进程数量
nbproc 23
cpu-map 1 1
cpu-map 2 2
cpu-map 3 3
cpu-map 4 4
cpu-map 5 5
cpu-map 6 6
cpu-map 7 7
cpu-map 8 8
cpu-map 9 9
cpu-map 10 10
cpu-map 11 11
cpu-map 12 12
cpu-map 13 13
cpu-map 14 14
cpu-map 15 15
cpu-map 16 16
cpu-map 17 17
cpu-map 18 18
cpu-map 19 19
cpu-map 20 20
cpu-map 21 21
cpu-map 22 22
cpu-map 23 23
stats bind-process 23
maxconnrate 100000000
maxconn 500000 #默认最大连接数,需考虑ulimit-n限制
#maxconnrate <number>:设定单haproxy进程每秒接受的连接数
#user haproxy #运行haproxy的用户
#group haproxy #运行haproxy的用户所在的组
pidfile /var/run/haproxy.pid #haproxy 进程PID文件
#10000029
ulimit-n 1048576 #ulimit 的数量限制
chroot /usr/share/haproxy #chroot运行路径
#debug #haproxy 调试级别,建议只在开启单进程的时候调试
#quiet
########默认配置############
defaults
log global
mode tcp
option tcplog
option dontlognull
maxconn 500000
#mode http #默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK
#option httplog #日志类别,采用httplog
#option dontlognull #不记录健康检查日志信息
retries 3 #两次连接失败就认为是服务器不可用,也可以通过后面设置
#option forwardfor #如果后端服务器需要获得客户端真实ip需要配置的参数,可以从Http Header中获得客户端ip
#option httpclose #每次请求完毕后主动关闭http通道,haproxy不支持keep-alive,只能模拟这种模式的实现
#option redispatch #当serverId对应的服务器挂掉后,强制定向到其他健康的服务器,以后将不支持
#option abortonclose #当服务器负载很高的时候,自动结束掉当前队列处理比较久的链接
#maxconn 4096 #默认的最大连接数
timeout connect 5000ms #连接超时
timeout client 30000ms #客户端超时
timeout server 30000ms #服务器超时
timeout check 20000 #心跳检测超时
#timeout http-keep-alive10s #默认持久连接超时时间
#timeout http-request 10s #默认http请求超时时间
#timeout queue 1m #默认队列超时时间
balance roundrobin #设置默认负载均衡方式,轮询方式
#balance source #设置默认负载均衡方式,类似于nginx的ip_hash
#balnace leastconn #设置默认负载均衡方式,最小连接数
########统计页面配置########
listen stats
bind-process 3
bind 0.0.0.0:1080 #设置Frontend和Backend的组合体,监控组的名称,按需要自定义名称
mode http #http的7层模式
option httplog #采用http日志格式
log 127.0.0.1 local0 err #错误日志记录
maxconn 100000 #默认的最大连接数
stats refresh 30s #统计页面自动刷新时间
stats uri /stats #统计页面url
stats realm XingCloud\ Haproxy #统计页面密码框上提示文本
stats auth admin:admin #设置监控页面的用户和密码:admin,可以设置多个用户名
#stats auth Frank:Frank #设置监控页面的用户和密码:Frank
stats hide-version #隐藏统计页面上HAProxy的版本信息
stats admin if TRUE #设置手工启动/禁用,后端服务器(haproxy-1.4.9以后版本)
########设置haproxy 错误页面#####
errorfile 403 /usr/local/haproxy/errorfiles/403.http
errorfile 500 /usr/local/haproxy/errorfiles/500.http
errorfile 502 /usr/local/haproxy/errorfiles/502.http
errorfile 503 /usr/local/haproxy/errorfiles/503.http
errorfile 504 /usr/local/haproxy/errorfiles/504.http
#################HAProxy的日志记录内容设置###################
capture request header Host len 40
capture request header Content-Length len 10
capture request header Referer len 200
capture response header Server len 40
capture response header Content-Length len 10
capture response header Cache-Control len 8
########frontend前端配置##############
frontend main
maxconn 6000000
bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
bind *:1081 #这里建议使用bind *:80的方式,要不然做集群高可用的时候有问题,vip切换到其他机器就不能访问了。
#acl web hdr(host) -i www.abc.com #acl后面是规则名称,-i为忽略大小写,后面跟的是要访问的域名,如果访问www.abc.com这个域名,就触发web规则,。
#acl img hdr(host) -i img.abc.com #如果访问img.abc.com这个域名,就触发img规则。
#use_backend webserver if web #如果上面定义的web规则被触发,即访问www.abc.com,就将请求分发到webserver这个作用域。
#use_backend imgserver if img #如果上面定义的img规则被触发,即访问img.abc.com,就将请求分发到imgserver这个作用域。
#default_backend dynamic #不满足则响应backend的默认页面
default_backend dynamic #不满足则响应backend的默认页面
########backend后端配置##############
#backend webserver #webserver作用域
#mode http
#balance roundrobin #balance roundrobin 负载轮询,balance source 保存session值,支持static-rr,leastconn,first,uri等参数
#option httpchk /index.html HTTP/1.0 #健康检查, 检测文件,如果分发到后台index.html访问不到就不再分发给它
#server web1 10.16.0.9:8085 cookie 1 weight 5 check inter 2000 rise 2 fall 3
#server web2 10.16.0.10:8085 cookie 2 weight 3 check inter 2000 rise 2 fall 3
#cookie 1表示serverid为1,check inter 1500 是检测心跳频率
#rise 2是2次正确认为服务器可用,fall 3是3次失败认为服务器不可用,weight代表权重
#backend imgserver
#mode http
#option httpchk /index.php
#balance roundrobin
#server img01 192.168.137.101:80 check inter 2000 fall 3
#server img02 192.168.137.102:80 check inter 2000 fall 3
backend dynamic
mode tcp
option tcplog #采用tcp日志格式
#bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
balance roundrobin
server s1 10.15x.58.1x3:1883 weight 10 check inter 2000 rise 2 fall 3 maxconn 2000000 maxqueue 10000000
server s2 10.15x.58.1x4:1883 weight 10 check inter 2000 rise 2 fall 3 maxconn 2000000 maxqueue 10000000
server s3 10.15x.58.1x5:1883 weight 10 check inter 2000 rise 2 fall 3 maxconn 2000000 maxqueue 10000000listen emqttd
bind 0.0.0.0:1081
mode tcp
option tcplog #采用tcp日志格式
bind-process 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
balance roundrobin
#log 127.0.0.1 local0 debug
server s1 10.15x.58.1x3:1883 weight 10 check inter 2000 rise 2 fall 3
server s2 10.15x.58.1x4:1883 weight 10 check inter 2000 rise 2 fall 3
server s3 10.15x.58.1x5:1883 weight 10 check inter 2000 rise 2 fall 3