HAProxy1.4.9的安装和配置rtmp、http代理

有时候安装一个东西,很容易浪费很多时间,网上有大量的安装文档,可用的或者写得准确的很少,很容易走弯路。就HaProxy而言,配置rtmp代理在网上也鲜有资料。

 

1.安装

1)下载haproxy1.4.9

cd /opt
tar zxvf haproxy-1.4.9.tar.gz   
cd haproxy-1.4.9

useradd haproxy

mkdir /opt/haproxy

make TARGET=linux26 PREFIX=/opt/haproxy

make install PREFIX=/opt/haproxy

cd /opt/haproxy

 

2)haproxy默认安装后,没有haproxy.cfg文件,所以先上传一个这个文件,然后再启动HaProxy

cd /opt/haproxy

nohup ./haproxy -f haproxy.cfg -d &

 

注:-d是debug模式,可以看到日志,haproxy配置日志相对比较麻烦的,用这个可以把日志打印在nohup.out文件里

 

2.配置RTMP的sample

本例中配置代理了两种类型的协议,一个是http,另外一个是rtmp的协议

 

global
pidfile /var/run/haproxy.pid
daemon
log     127.0.0.1   local0
log     127.0.0.1   local1 notice

defaults
log global
mode http
option dontlognull
retries 3
option redispatch
maxconn 20000
contimeout 5000
clitimeout 50000
srvtimeout 50000
stats enable
stats uri     /haproxy-stats
stats auth haproxyadmin:hapwd3979
cookie MYSITECOOKIE insert nocache

listen tcpweb :80
mode tcp
option tcplog
balance roundrobin
server s1 127.0.0.1:8080 check


listen tcpconn :443
mode tcp
option tcplog
balance roundrobin

server red5-1 100.10.3.152:443

你可能感兴趣的:(F#)