HAProxy 选项 httpchk 不起作用

HAProxy 选项 httpchk 不起作用

下面是我的 haproxy.xfg 文件。HAPRoxy 版本 1.4.18(发布于 2011/09/16)未对 heatbeat.html 进行任何调用。
尽管 server1 没有 heartbeat.html,但它会向两台服务器发送流量。

global
    log         127.0.0.1 local2
    chroot      /var/lib/haproxy
    pidfile     /var/run/haproxy.pid
    maxconn     4000
    #user        haproxy
    #group       haproxy
    daemon

defaults
    mode                    http
    log                     global
    option                  httplog
    option                  dontlognull
    retries                 1
    timeout http-request    300s
    timeout queue           1m
    timeout connect         10s
    timeout client          1m
    timeout server          1m
    timeout http-keep-alive 10s
    timeout check           10s
    maxconn                 3000

listen http_proxy 0.0.0.0:8980
    mode http
    cookie JSESSIONID prefix
    balance roundrobin
    option httpchk HEAD /heartbeat/heartbeat.html HTTP/1.0
    server  app11 10.x.x.11:8080 cookie check inter 1000 fall 1 rise 1
    server  app13 10.x.x.12:8080 cookie check inter 1000 fall 1 rise 1

答案1

您需要命名您的 cookie:。cookie name目前它被命名为“check”,因此没有检查。

相关内容