IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    Linux下通过HaProxy进行请求转发

    Ght.me发表于 2017-04-20 08:34:00
    love 0

    有通过Linux转发流量的需求,所以操刀一试,具体操作如下:

    首先更新下(以下操作都在root用户下进行):

    apt-get update
    

    接下来安装haproxy:

    apt-get install haproxy
    

    然后会发现在/etc/haproxy/下出现haproxy.cfg的配置文件,当然,这个我们也不用,所以清空:

    cp /dev/null haproxy.cfg
    

    然后粘贴进以下内容:

    global
    
    defaults
            log     global
            mode    tcp
            option  dontlognull
            timeout connect 5000
            timeout client  50000
            timeout server  50000
    
    frontend ss-in
        bind *:转发端口
        default_backend ss-out
    
    backend ss-out
        server server1 转发IP:转发端口 maxconn 20480
    

    完成后启动:

    haproxy -f /etc/haproxy/haproxy.cfg &
    

    或

    sudo haproxy -f /etc/haproxy/haproxy.cfg -D
    


沪ICP备19023445号-2号
友情链接