HAproxy负载搭建

可查找安装包在:

https://src.fedoraproject.org/repo/pkgs/haproxy/

本实例中以1.4.25为例

tar zxvf haproxy-1.4.25.tar.gz

cd haproxy-1.4.25

uname -r

make TARGET=linux2628 PREFIX=/usr/local/haproxy

make install PREFIX=/usr/local/haproxy

#参数说明

TARGET=linux26 #内核版本,使用uname -r查看内核,如:2.6.18-371.el5,此时该参数就为linux26;kernel 大于2.6.28的用:TARGET=linux2628

cd examples/

haproxy -v

cd /usr/local/haproxy/sbin

 

/usr/local/haproxy/sbin/haproxy -f /usr/local/haproxy/conf/haproxy.cfg

 

 

配置文件:

# this config needs haproxy-1.1.28 or haproxy-1.2.1

 

global

log 127.0.0.1 local0 info

#log loghost local0 info

maxconn 1024

chroot /usr/local/haproxy

uid 99

gid 99

daemon

#debug

#quiet

pidfile /usr/local/haproxy/haproxy.pid

 

 

defaults

log global

mode http

option httplog

option dontlognull

retries 3

option redispatch

maxconn 2000

contimeout 5000

clitimeout 50000

srvtimeout 50000

stats uri /status

stats refresh 10s

stats realm welcome login\ HAProxy

stats auth admin:admin

stats hide-version

 

listen admin

bind 0.0.0.0:19088

balance roundrobin

log 127.0.0.1 local0 err

mode http

stats admin if TRUE

frontend forntend

 

bind *:80

mode http

option httplog

#option forwardfor

option httpclose

log global

default_backend backend

 

backend backend

mode http

option httpchk GET /index.html

#cookie SESSION_COOKIE insert indirect nocache

#server s1 192.168.1.142:8080 cookie 3 weight 4 check inter 2000 rise 2 fall 3

#server s2 192.168.1.142:8081 cookie 3 weight 6 check inter 2000 rise 2 fall 3

#balance source

#server s1 192.168.1.142:8080 cookie 11 check inter 1500 rise 3 fall 3 weight 1

#server s2 192.168.1.142:8081 cookie 12 check inter 1500 rise 3 fall 3 weight 1

appsession JSESSIONID len 64 timeout 5h request-learn

server s1 192.168.1.142:8080 cookie 11 check inter 1500 rise 3 fall 3 weight 1

server s2 192.168.1.142:8081 cookie 12 check inter 1500 rise 3 fall 3 weight 1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值