0

我的 haproxy.cfg

global
    log 127.0.0.1 local0
    maxconn 20000
    user haproxy
    group haproxy
    stats socket /var/run/haproxy/haproxy.sock level admin
    stats timeout 2m
    listen admin
    bind *:8080
    stats enable

defaults
    log     global
    mode    http
    option  httplog
    option  dontlognull
    retries 3
    option redispatch
#    timeout http-request 5s
    timeout connect  5000
    timeout client  60000
    timeout server  60000

frontend http-in
   bind *:80
   default_backend monkey


backend monkey
    stats enable
    stats uri /haproxy?stats
    stats realm Strictly\ Private
    stats auth admin:hello
    stats auth Another_User:hi
    mode http
    compression algo gzip
    compression type text/html text/plain text/css application/json
    balance roundrobin
    option httpclose
    option forwardfor
    default-server inter 1s fall 1
    server        cd-test-1 1.2.3.4:80 check
    server        cd-test-2 5.6.7.8:80 check

我一直在使用 socat 从 HAproxy 集群中禁用一个节点。下面是命令

echo "disable server monkey/cd-test-1"| socat stdio /var/run/haproxy/haproxy.sock

以上从 haproxy 禁用我的节点。但是如果我使用 IP 地址(1.2.3.4)而不是“cd-test-1”,它会返回No such server。

我正在使用 ansible 来自动化它。我使用 {{inventory_hostname}} 并将命令委托给我的 HAproxy 服务器。因此问题。

- name: Disable {{ inventory_hostname }} in haproxy and letting the services drain
    shell: echo "disable server monkey/{{inventory_hostname}}"| socat stdio /var/run/haproxy/haproxy.sock
    become_user: root
    delegate_to: "{{ item }}"
    with_items: groups.haproxy_backend

这将返回“没有这样的服务器”。并移动。

有人可以帮我找到使用IP而不是服务器名称的问题。可能会做一些非常愚蠢的事情。任何帮助表示赞赏。

4

1 回答 1

1

使用 socat 禁用和启用 HAproxy,必须提及服务器别名。

否则,我们将得到一个No such server错误。

于 2016-03-14T09:41:07.560 回答