我安装了 fms 3.5 并且实际上在 8080 中运行 apache for php 并希望在不同的端口中创建这个 fms 服务并在安装时将其设置为 8083,
安装后当我开始使用 fms
./fmsmgr 服务器 fms 启动
它显示错误消息,我签入了消息文件,它已经提供了该端口已被某人使用
“3 月 26 日 03:59:51 u15393552 适配器 [12576]:无法初始化适配器管理员的侦听器,FMS 已在运行或其他适配器管理员”
请找到我的解决方案。
我安装了 fms 3.5 并且实际上在 8080 中运行 apache for php 并希望在不同的端口中创建这个 fms 服务并在安装时将其设置为 8083,
安装后当我开始使用 fms
./fmsmgr 服务器 fms 启动
它显示错误消息,我签入了消息文件,它已经提供了该端口已被某人使用
“3 月 26 日 03:59:51 u15393552 适配器 [12576]:无法初始化适配器管理员的侦听器,FMS 已在运行或其他适配器管理员”
请找到我的解决方案。
默认情况下,Adobe Flash Media Server 将端口 1935 用于 RTMP(实时消息传递协议)。此端口由 IANA(Internet 编号分配机构)分配给 Adobe 用于 Flash Media Server。
如果正在使用防火墙,则需要打开此端口。否则,需要将服务器配置为使用 Adaptor.xml 标记中的不同端口。下面是标签的默认条目的样子:
<HostPortList>
<!-- Specifies what IP address and port(s) to bind to. This is specified -->
<!-- as a string in the form"<ip>:<port>,<port>,...,<port>". -->
<!-- For example, "127.0.0.1:1935,80,443". This says to bind to the IP -->
<!-- address of 127.0.0.1 on ports 1935, 80, and 443. You can bind to -->
<!-- any IP by not specifying anything in front of the colon. -->
<!-- For example, ":1935,80,443". This says to bind to any IP on ports -->
<!-- 1935, 80, and 443. If no colon is found, the data is assumed to be -->
<!-- an IP address, and will bind to port 1935 as the default. -->
<!-- For example, "127.0.0.1". This says to bind to IP 127.0.0.1 on port -->
<!-- 1935. If a colon is found but no ports are specified after it, port -->
<!-- 1935 is used as the default port in which to bind. -->
<!-- For example, "127.0.0.1:". This says to bind to IP 127.0.0.1 on -->
<!-- port 1935. If you wish to bind to multiple IP addresses on this -->
<!-- adaptor, specify additional <HostPort> tags; 1 for each additional -->
<!-- IP that you wish to bind to. NOTE: Another adaptor may also try to -->
<!-- bind to the same IP-port combination resulting in a conflict. This -->
<!-- is considered a conflict since it is undesirable to have more than -->
<!-- one adaptor listening on the same IP-port pair. To resolve this -->
<!-- conflict, the first adaptor to do the bind - wins. A warning will -->
<!-- be logged indicating that the specified IP-port combo is in-use. -->
<HostPort>:1935</HostPort>
</HostPortList>
这是 FMS 文档的配置端口部分的链接。它包含有关为 RTMP、HTTP 和 RTMFP 配置端口的信息。它还具有指向端口测试器的链接。