16 Ağustos 2021 Pazartesi

HAProxy

HAProxy + PgBouncer
Şeklen şöyle


/etc/haproxy/haproxy.cfg Dosyası
Örnek
Şöyle yaparız. listen stats alanında özet görmek için 7000 portunun kullanılacağı belirtiliyor.. 
http://45.58.47.24:7000 adresine gideriz.
global
    maxconn 100

defaults
    log global
    mode tcp
    retries 2
    timeout client 30m
    timeout connect 4s
    timeout server 30m
    timeout check 5s

listen stats
    mode http
    bind *:7000
    stats enable
    stats uri /

listen postgres
    bind *:5000
    option httpchk
    http-check expect status 200
    default-server inter 3s fall 3 rise 2 on-marked-down shutdown-sessions
    server postgresql_69.87.217.177_5432 69.87.217.177:5432 maxconn 100 check port 8008
    server postgresql_45.58.39.238_5432 45.58.39.238:5432 maxconn 100 check port 8008

Hiç yorum yok:

Yorum Gönder