惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Exploit Database - CXSecurity.com
F
Fortinet All Blogs
U
Unit 42
F
Full Disclosure
雷峰网
雷峰网
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
罗磊的独立博客
D
DataBreaches.Net
C
Check Point Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
O
OpenAI News
C
CXSECURITY Database RSS Feed - CXSecurity.com
aimingoo的专栏
aimingoo的专栏
S
Security @ Cisco Blogs
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题
NISL@THU
NISL@THU
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Hacker News
The Hacker News
Webroot Blog
Webroot Blog
Security Latest
Security Latest
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
N
News | PayPal Newsroom
P
Proofpoint News Feed
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
C
Cybersecurity and Infrastructure Security Agency CISA
N
News and Events Feed by Topic
Google Online Security Blog
Google Online Security Blog
H
Help Net Security
Spread Privacy
Spread Privacy
T
Threat Research - Cisco Blogs
GbyAI
GbyAI
I
Intezer
Application and Cybersecurity Blog
Application and Cybersecurity Blog
M
MIT News - Artificial intelligence
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
MyScale Blog
MyScale Blog
腾讯CDC

博客园 - 狂野都城

一次分布式事务管理器(MSDTC)的事务处理异常的排错 后台线程处理 FMS3.5 的logs 日志目录配置 C#磁盘大小管理操作类 C#建立IIS虚拟目录站点 IO操作类 同步和异步方式获取网页源代码! 判断一幅图片是否是黑色,灰度直方图 winform窗体置前 关于FMS服务端数据流发布 Windows服务“允许服务与桌面交互”的使用和修改方法 招聘:Flash视频开发程序员(网络多媒体应用) 招聘:windows mobile 手机应用软件的开发 Word 2007 里头鼠标失效(滚轮除外) ,困扰多天! 终止线程 Response.End 在Asp.net 里面的正确使用 Access 中查询TOP语句的奇怪问题??? 一道小学数学题... net常用代码 (收藏) 在VS2005 开发中使用Codesmith 和NetTiers 模版开发相关
如何配置FMS边缘服务器
狂野都城 · 2009-05-21 · via 博客园 - 狂野都城

经过实际配置测试:

边缘服务器的配置很简单,只要修改配置文件Vhost.xml 和 Application.xml 就可以了

这个配置文件的具体方法是:

一、FMS3安装目录下:conf/_defaultRoot_/_defaultVHost_/Vhost.xml,用记事本打开这个文件,作如下修改:

找到    <Proxy> 下的 <Mode> 节点,修改Mode属性为remote,即: remote

二、 FMS3安装目录下:conf/_defaultRoot_/_defaultVHost_/Application.xml,用记事本打开这个文件,作如下修改:

找到 <Scope></Scope>节点,修改为:<Scope>inst</Scope> 保存即可。

记得:重启FMS后,边缘服务器就配置好了,至于其它的性能各方面的参数,可以详细配置

如何使用:

1.源服务器地址: rtmp://192.168.1.200/videoChat

2.边缘服务器地址:rtmp://192.168.1.110/

不使用边缘服务器,则直接 nc.connect("rtmp://192.168.1.200/videoChat");

使用边缘服务器连接:nc.connect("rtmp://192.168.1.110/?rtmp://192.168.1.200/videoChat");

3.隐式访问:

如果不想通过nc.connect("rtmp://192.168.1.110/?rtmp://192.168.1.200/videoChat"); 这样的方式连接,

可在VHost.xml 下进行设置:

<Anonymous>true</Anonymous>

<RouteEntry>*:1935;192.168.1.200:1935</RouteEntry> 配置要指向的源服务器,则在访问的时候:

nc.connect("rtmp://192.168.1.110/videoChat");

它指向到192.168.1.200 这个源服务器。

多个边缘服务器的使用:

【rtmp://边缘1?rtmp://边缘2?rtmp://边缘3?rtmp://边缘4?rtmp://源】