Hi Guys,
I tried to find more info regarding issue that I found. Hope it’s configuration issue rather than a bug in Haproxy. I have 2 postgres backends and 1 tcp frontend. Despite the fact that I see quit big tcp traffic incoming to frontend and balanced between each backends in tcpdump, I see no connections in Haproxy stats(checked with tcpdump -i eth0 -s 0 -l -w - dst port 5432 | strings)
However when I connect by myself using psql client to haproxy it shows an entry in logs, but balancer traffic from application to haproxy not.
HA-Proxy version 1.6.5 2016/05/10
Here is my conf:
global
log /dev/log local0 debug
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
maxconn 200
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# Default ciphers to use on SSL-enabled listening sockets.
# For more information, see ciphers(1SSL). This list is from:
# https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
ssl-default-bind-options no-sslv3
defaults
log global
mode tcp
option tcplog
timeout connect 5000
timeout client 20m
timeout server 20m
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
frontend ft_replication
bind someip:5433
mode tcp
default_backend bk_repl
backend bk_repl
mode tcp
option pgsql-check user postgres
balance roundrobin
server backend1 someip:5432 check
server backend2 someotherip:5432 check
listen haproxy-monitoring
bind someip:80
mode http
stats enable
stats show-legends
stats refresh 5s
stats uri /haproxy?stats
stats realm haproxy\ Statistics
stats auth xxx:xxx
stats admin if TRUE
~
Any clues ?