0.9.1 Final版本
1.admin Panel安装
http://trac.red5.org/wiki/AppServer/Plugins
2.Demo部署
下载javaDemo后
编辑ant的build.xml文件
1)添加此行:
<property name="red5.root" value="${env.RED5_HOME}"/>
2)修改此行:
<property name="dist.dir" value="${red5.root}/webapps"/>
3)修改clean Target
<target name="clean"> <delete dir="${classes.dir}"/> <delete dir="${dist.dir}/${ant.project.name}" failonerror="false"/> <delete file="${dist.dir}/${ant.project.name}.jar" failonerror="false"/> <delete file="${dist.dir}/${ant.project.name}.war" failonerror="false"/> </target>
4)修改path
<path id="project.classpath"> <fileset dir="${red5.root}/lib"/> <pathelement location="${red5.root}/red5.jar"/> <pathelement location="${red5.root}/lib/red5.jar"/> <!-- project specific libs --> <fileset dir="${lib.dir}"/> </path>