OpenRTMFP 可以帮助你实现 Flash 的实时应用的高并发扩展,OpenRTMFP/Cumulus 是基于 GNU General Public License 的。
下载:
External Dependencies | Official Site | Windows | Linux/OSX |
---|---|---|---|
OpenSSL | Official Site | Download | Download |
Lua | Official Site | Download | Download |
POCO | Official Site | Download | Download |
注意:
Windows 下略,Linux 下基本就是:
./configure
make
sudo make install
OpenRTMFP-Cumulus/CumulusLib
make
cd ../CumulusServer
make
如果出现了.h
文件、lib 库找不到的情况,请修改 OpenRTMFP-Cumulus/CumulusLib/Makefile 或 OpenRTMFP-Cumulus/CumulusServer/Makefile。
通过编写OpenRTMFP-Cumulus/CumulusServer/CumulusServer.ini
文件来为 OpenRTMFP-Cumulus 进行个性化配置(默认是没有这个文件的),这个文件的内容形如:
;CumulusServer.ini
port = 1985
udpBufferSize = 114688
keepAlivePeer = 10
keepAliveServer = 15
[logs]
name=log
directory=C:/CumulusServer/logs
一些字段的设置含义如下,摘自:地址
port
, equals 1935 by default (RTMFP server default port), it’s the port used by CumulusServer to listen incoming RTMFP requests.udpBufferSize
, allows to change the size in bytes of UDP reception and sending buffer. Increases this value if your operating system has a default value too lower for important loads.keepAliveServer
, time in seconds for periodically sending packets keep-alive with server, 15s by default (valid value is from 5s to 255s).keepAlivePeer
, time in seconds for periodically sending packets keep-alive between peers, 10s by default (valid value is from 5s to 255s).edges.activated
, activate or not the edges server on the RTMFP server (see CumulusEdge, Scalability page for more details about CumulusEdge). By default, CumulusServer stays a RTMFP server without edges ability (default value is false).edges.port
, port for the edges server, to accept incoming new CumulusEdge instances (see CumulusEdge, Scalability page for more details about CumulusEdge). By default, it’s the port 1936.
Warning: This port will receive plain text request from edges, for this purpose it should not be made public. It’s very important for security consideration. It must be available only for CumulusEdge instances, and anything else.
edges.attemptsBeforeFallback
, number of CumulusEdge attempt connections before falling back to CumulusServer (see CumulusEdge, Scalability page for more details about CumulusEdge). By default the value is 2 (in practical, 2 attempts happens after 5 sec approximately).smtp.host
, configure a SMTP host to use mails feature provided by Cumulus in server application (see Server Application, Sockets page for more details about mails feature). By default the value is localhost.smtp.port
, configure a SMTP port to use mails feature provided by Cumulus in server application (see Server Application, Sockets page for more details about mails feature). By default the value is 25.smtp.timeout
, configure a SMTP timeout session in seconds to use mails feature provided by Cumulus in server application (see Server Application, Sockets page for more details about mails feature). By default the value is 60 seconds.logs.directory
, directory where are written log files (CumulusServer/logs by default).logs.name
, name of log file (log by default).Windows 下的启动方法为:
CumulusServer.exe /registerService [/displayName=CumulusServer /description="Open Source RTMFP Server" /startup=automatic]
Unix-like 下的启动方法为:
sudo ./CumulusServer --daemon [--pidfile=/var/run/CumulusServer.pid]
如我的启动命令为:
sudo ./CumulusServer --daemon --pidfile=./CumulusServer.pid
本地 Flash client 可以通过如下语句连接:
var nc:NetConnection = new NetConnection();
nc.connect("rtmfp://localhost/");
RTMFP
默认是采用1935
端口,如果你特别指定了其他端口,比如12345
,请使用如下方式:
nc.connect("rtmfp://localhost:12345/");
启动CumulusServer
后,会在可执行文件的目录下出现一个www
目录,该目录的作用,就是作为 Server Application 的默认根目录。具体的对应关系如下:
rtmfp://host:port/ -> [CumulusServer folder]/www/main.lua (root application)
rtmfp://host:port/myApplication -> [CumulusServer folder]/www/myApplication/main.lua
rtmfp://host:port/Games/myGame -> [CumulusServer folder]/www/Games/myGame/main.lua
另外要提醒的是,如果main.lua
文件被修改,则不需要重启CumulusServer
,因为 Server Application 的创建是一种动态的方式。
CumulusServer 的详细扩展方式会在下一篇文章中介绍。
-
转载请注明来自柳大的CSDN博客:Blog.csdn.net/poechant
-