Sandy在之前有说过阿里云通过Nginx中转Linode/digitalocean/AWS的V2ray协议,实现负载均衡,有些学童不想折腾nginx,那么我们可以用haproxy来折腾,不管是haproxy还是Nginx都可以在树莓派和局域网的PC机器折腾!
安装haproxy的教程就移步到->haproxy安装教程
apt-get install haproxy
安装完毕,我们来修改haproxy的配置
vi /etc/haproxy/haproxy.cfg
里面内容全部删除,加入下面的内容
global
ulimit-n 51200
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
user haproxy
group haproxy
daemon
defaults
log global
mode tcp
retries 3
option dontlognull
option redispatch
#上游TCP服务器连接等待时间
timeout connect 5s
timeout client 24h
timeout server 24h
#以下为Web管理页面设置,如不需要可以删除
listen admin_stats
bind 0.0.0.0:8888
mode http
log 127.0.0.1 local0 err
stats refresh 30s
stats uri /haproxy
stats realm welcome login\ Haproxy
stats auth admin:admin
stats hide-version
stats admin if TRUE
#以上为Web管理页面设置,如不需要可以删除
frontend v2ray-in
mode tcp
#Haproxy监听的端口
bind 0.0.0.0:7777 #v2ray客户端连接端口使用这个
default_backend v2ray
backend v2ray
mode tcp
option tcp-check
balance roundrobin
# balance leastconn
server v2ray1 192.168.2.2:8888 check inter 1000
server v2ray2 192.168.2.3:8888 check inter 1000
server v2ray3 192.168.2.3:8888 check inter 1000
然后启动haproxy,在浏览器输入http://主服务器IP:8888 就可以管理你的负载均衡点了
root@haproxy:~# service haproxy
Usage: /etc/init.d/haproxy {start|stop|reload|restart|status}
root@haproxy:~# service haproxy start
配了 haproxy 怎么连接,改ip和端口为v2ray-in配的ip和端口也不行啊
回复删除