isso é algum tipo de bug haproxy?

1

Eu saio do link e, em seguida, altero a URL para o link e ele não consegue ir para o apache e, em vez disso, vai para o meu outro servidor onde sniffyourkid.com está. ISTO É INTERMITENTE e às vezes acontece com maior frequência em www.sniffyourkid.com/ para www.sniffyourkid.com/blog. Se eu atualizar algumas vezes, ele finalmente vai para o apache. É muuuuito estranho. Em wireshark, vejo a partir do rastreamento, é incorretamente acertar o servidor errado e vejo estranhos pacotes TCP fora de ordem (não tenho certeza se é importante)

# this config needs haproxy-1.1.28 or haproxy-1.2.1

global
        log 127.0.0.1   local0
        log 127.0.0.1   local1 notice
        #log loghost    local0 info
        maxconn 4096
        #chroot /usr/share/haproxy
        user haproxy
        group haproxy
        daemon
        #debug
        #quiet

defaults
        log     global
        mode    http
        option  httplog
        option  dontlognull
        retries 3
        option redispatch
        maxconn 2000
        contimeout      5000
        clitimeout      50000
        srvtimeout      50000

frontend http_proxy
        bind 0.0.0.0:80
        acl is_blog path_beg /blog
        acl is_stats path_beg /haproxystats
        use_backend cluster2 if is_blog
        use_backend statistics if is_stats
        use_backend cluster1 if !is_blog !is_stats

backend statistics
        stats enable
        stats uri /haproxystats

backend cluster1
        option httpchk
        cookie  SERVERID rewrite
        server  server1 127.0.0.1:9080 cookie inst1cookie check inter 2000 rise 2 fall 5

backend cluster2
        option httpchk
        cookie  SERVERID rewrite
        server  server1 127.0.0.1:8080 cookie inst1cookie check inter 2000 rise 2 fall 5

Acho que esta é a versão, né ....

root@Sniffy:/etc/haproxy# apt-show-versions haproxy
haproxy/precise uptodate 1.4.18-0ubuntu1
    
por Dean Hiller 07.01.2013 / 00:54

1 resposta

4

Sua configuração está faltando "option http-server-close", então funciona no modo de túnel.

    
por 07.01.2013 / 01:18

Tags