haproxy配置多个端口的负载均衡配置

Posted 苍茫宇宙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了haproxy配置多个端口的负载均衡配置相关的知识,希望对你有一定的参考价值。

1、haproxy配置多个负载

global
    log 127.0.0.1 local0
    log 127.0.0.1 local1 notice
    #daemon
    debug
    user haproxy
    group haproxy
    maxconn 4096

defaults
    log global
    mode tcp
    option tcplog
    option dontlognull
    option redispatch
    retries 3
    maxconn 2000
    contimeout 10000
    clitimeout 50000
    srvtimeout 50000

listen tidb3 :80
    mode tcp
    balance roundrobin

    server h1 xxx.xxx.xxx.xxx:80 check
    server h2 xxx.xxx.xxx.xxx:80 check

listen tidb4 :1935
   mode tcp
   balance roundrobin

   server s1 xxx.xxx.xxx.xxx:1935 check
   server s2 xxx.xxx.xxx.xxx:1935 check

  

 

以上是关于haproxy配置多个端口的负载均衡配置的主要内容,如果未能解决你的问题,请参考以下文章

LVS负载均衡介绍和配置

haproxy默认端口号 是多少

用 Keepalived+HAProxy 实现高可用负载均衡的配置方法 | 运维进阶

使用HAProxy实现MySQL多slave的读负载均衡

配置HAProxy实现负载均衡

Nginx基于TCP/UDP端口的四层负载均衡(stream模块)配置梳理