1

私は fms 3.5 をインストールし、実際には 8080 で php の apache を実行しています。この fms サービスを別のポートで作成し、インストール中に 8083 として作成したいのですが、

fms を使用して起動するときにインストールした後

./fmsmgr サーバー fms 開始

エラーメッセージが表示され、メッセージファイルをチェックインすると、ポートが誰かによって使用されていることが既に示されています

「3 月 26 日 03:59:51 u15393552 アダプター [12576]: アダプター管理者のリスナーの初期化に失敗しました。FMS は既に実行されているか、他のアダプター管理者です」

私に解決策を見つけてください。

4

2 に答える 2

1

デフォルトでは、Adobe Flash Media Server は RTMP (Real-Time Messaging Protocol) にポート 1935 を使用します。このポートは、IANA (Internet Assigned Numbers Authority) によって Flash Media Server 用に Adob​​e に割り当てられました。

ファイアウォールを使用している場合は、このポートを開く必要があります。それ以外の場合は、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>
于 2010-12-15T15:15:57.280 に答える
0

FMS ドキュメントのポートの構成セクションへのリンクを次に示します。RTMP、HTTP、および RTMFP のポートの構成に関する情報が含まれています。また、ポート テスターへのリンクもあります。

于 2011-11-16T05:28:41.240 に答える