无法访问 Wowza REST API
Can't access Wowza REST API
我 运行 EC2 实例上的 Wowza Streaming Engine,除 REST API/REST API 文档外,一切正常。
当我向其他 api 甚至文档发送请求时,我没有收到任何回复。它超时了。
我关注了这个guide。
Server.xml
<RESTInterface>
<Enable>true</Enable>
<IPAddress>*</IPAddress>
<Port>8087</Port>
<!-- none, basic, digest, remotehttp, digestfile -->
<AuthenticationMethod>none</AuthenticationMethod>
<DiagnosticURLEnable>true</DiagnosticURLEnable>
<SSLConfig>
<Enable>false</Enable>
<KeyStorePath></KeyStorePath>
<KeyStorePassword></KeyStorePassword>
<KeyStoreType>JKS</KeyStoreType>
<SSLProtocol>TLS</SSLProtocol>
<Algorithm>SunX509</Algorithm>
<CipherSuites></CipherSuites>
<Protocols></Protocols>
</SSLConfig>
<IPWhiteList>*</IPWhiteList>
<IPBlackList></IPBlackList>
<EnableXMLFile>false</EnableXMLFile>
<DocumentationServerEnable>true</DocumentationServerEnable>
<DocumentationServerPort>8089</DocumentationServerPort>
<!-- none, basic, digest, remotehttp, digestfile -->
<DocumentationServerAuthenticationMethod>none</DocumentationServerAuthenticationMethod>
<Properties>
</Properties>
</RESTInterface>
我解决了问题
我的 EC2 实例有一个自动生成的 Wowza 安全组,但它不包括对端口 8089 或端口 8087 的访问,这是默认的 Wowza REST API/API 文档侦听的。
我自己将规则添加到两个端口的入站规则中。
我 运行 EC2 实例上的 Wowza Streaming Engine,除 REST API/REST API 文档外,一切正常。
当我向其他 api 甚至文档发送请求时,我没有收到任何回复。它超时了。
我关注了这个guide。
Server.xml
<RESTInterface>
<Enable>true</Enable>
<IPAddress>*</IPAddress>
<Port>8087</Port>
<!-- none, basic, digest, remotehttp, digestfile -->
<AuthenticationMethod>none</AuthenticationMethod>
<DiagnosticURLEnable>true</DiagnosticURLEnable>
<SSLConfig>
<Enable>false</Enable>
<KeyStorePath></KeyStorePath>
<KeyStorePassword></KeyStorePassword>
<KeyStoreType>JKS</KeyStoreType>
<SSLProtocol>TLS</SSLProtocol>
<Algorithm>SunX509</Algorithm>
<CipherSuites></CipherSuites>
<Protocols></Protocols>
</SSLConfig>
<IPWhiteList>*</IPWhiteList>
<IPBlackList></IPBlackList>
<EnableXMLFile>false</EnableXMLFile>
<DocumentationServerEnable>true</DocumentationServerEnable>
<DocumentationServerPort>8089</DocumentationServerPort>
<!-- none, basic, digest, remotehttp, digestfile -->
<DocumentationServerAuthenticationMethod>none</DocumentationServerAuthenticationMethod>
<Properties>
</Properties>
</RESTInterface>
我解决了问题 我的 EC2 实例有一个自动生成的 Wowza 安全组,但它不包括对端口 8089 或端口 8087 的访问,这是默认的 Wowza REST API/API 文档侦听的。
我自己将规则添加到两个端口的入站规则中。