从群集禁用HAproxy禁用服务器时找不到此类服务器

时间:2016-03-11 15:07:31

标签: ansible haproxy continuous-deployment socat

我的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"它返回没有这样的服务器。

我正在使用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而不是服务器名称的问题。可能会做一些非常愚蠢的事情。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

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

否则,我们会收到No such server错误。