root-web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- ROOT web context -->
<bean id="web.context" class="org.red5.server.Context">
<property name="scopeResolver" ref="red5.scopeResolver" />
<property name="clientRegistry" ref="global.clientRegistry" />
<property name="serviceInvoker" ref="global.serviceInvoker" />
<property name="mappingStrategy" ref="global.mappingStrategy" />
</bean>
<bean id="web.scope" class="org.red5.server.WebScope" init-method="register">
<property name="server" ref="red5.server" />
<property name="parent" ref="global.scope" />
<property name="context" ref="web.context" />
<property name="handler" ref="global.handler" />
<property name="contextPath" value="/fileList" />
<property name="virtualHosts" value="<span style="color:#ff0000;">10.52.85.21</span>" />
</bean>
<bean id="web.handler" class="com.apps.Application" singleton="true" />
<bean id="streamService.service" class="com.services.StreamService" singleton="true"/>
<bean id="streamFilenameGenerator"
class="streamfile.path.PathBean">
<property name="recordPath" value="/usr/tmp/streams/" />
<property name="playbackPath" value="/usr/tmp/streams/" />
</bean>
</beans>
red5-core.xml
由于太长,我就粘贴需要改动的那个部分
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:lang="http://www.springframework.org/schema/lang"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd">
<!-- This context holds all the networking: mina -->
.......省略部分......
<!-- RTMP Mina Transport -->
<bean id="rtmpTransport" class="org.red5.server.net.rtmp.RTMPMinaTransport" init-method="start" destroy-method="stop">
<property name="ioHandler" ref="rtmpMinaIoHandler" />
<property name="connectors">
<list>
<bean class="java.net.InetSocketAddress">
<constructor-arg index="0" type="java.lang.String"
value="<span style="color:#ff0000;">10.52.85.21</span>" />
<constructor-arg index="1" type="int" value="1935" />
</bean>
</list>
</property>
<property name="receiveBufferSize" value="65536" />
<property name="sendBufferSize" value="271360" />
<property name="connectionThreads" value="4" />
<property name="ioThreads" value="16" />
<!-- This is the interval at which the sessions are polled for stats. If mina monitoring is not
enabled, polling will not occur. -->
<property name="jmxPollInterval" value="1000" />
<property name="tcpNoDelay" value="true" />
</bean>
......省略部分......
</beans>
在root-web.xml中指定了流媒体服务器中的文件播放路径-->/usr/tmp/streams,同时我也在此目录下放置了test.flv文件
看其中的IP地址,我这里很疑惑,到底是填写内网地址呢还是外网地址呢?
根据tomcat中的日志red5.log中记录,当使用外网地址时,使用netstat -ntl | more命令查看时,发现1935根本不会开启,同时red5.log中就会出现cannot assign requested address错误
当使用内网时,就不会报错,并且使用命令查看端口时,发现1935是开启的
但是无论通过哪种方法访问 rtmp://183.54.223.123/fileList/test.flv 或者使用 rtmp://10.52.85.21/fileList/test.flv 都不能正常播放
在外部用流媒体播放器是无法播放的,总是说不是指定路径,于是我将一个自己写的测试流媒体播放的播放器放置在项目的tomcat下,通过内部区访问,也是行不通的,同时给我标出的端口竟然是80(如Server not found rtmp://183.54.223.123:80/fileList),证明我不是通过1935访问的(但是在这种情况下,如果上面中的xml文件配置的是内网IP的话,1935应该是打开了的,为什么竟然是通过80端口访问的呢?)
于是我又想是不是外网服务器进入内网中时,有一层防火墙,阻止了1935端口开启,但是打电话去问时,给我的答案是只对80端口进行了部分限制,其它的端口没有限制,同时我使用telnet命令在windows上是能够测通的
这里我已经确认了本机上的防火墙已经把特定的端口开启了,而且我也做过吧防火墙全部关闭过的尝试,但是都没有效果
之后我在linux上部署了一个单独的red5服务器,通过安装其中的案例测试是可以正常播放的,说明外网的1935端口确实是开启的,只是随着red服务器的开启而随之开启,那么当我启动tomcat中的red5服务,经过测试确实1935也是开启了的,到底是哪里出错了?
于是我看了red5中一个测试程序的WEB-INF里面的red5-web.xml文件,发现他填写的地址竟然是"*,localhost:8080,localhost,127.0.0.1:8080",而不是对应的内网IP
那么是否意味着在tomcat中的red5服务也是要这么配置呢,于是我修改了root-web.xml文件中的内网地址,将其改为"*,localhost:8080,localhost,127.0.0.1:8080",测试通过,可以完美播放视频了
根据我的理解,应该是当你在浏览器或者流媒体视频播放器输入外网地址时,而配置文件总根本就找不到对应的外网地址,因为此时你配的是内网地址,所以根据也就找不到对应的tomcat中的red5服务,更谈不上调用red5服务播放视频了,而当填写的是"*,localhost:8080,localhost,127.0.0.1:8080"时,由于是接受所有访问地址,因此找到对应的fileList服务,同时将此地址转换成内网地址绑定到1935端口上,于是就可以正常播放了