运行 RED5 服务器时出错 - 无法打开类路径资源 [red5.xml],因为它不存在

运行 RED5 服务器时出错 - 无法打开类路径资源 [red5.xml],因为它不存在

你好 ,

我已经为 red5 服务器安装了 Java 版本“1.6.0_14”和 Ant 版本 1.8.2。当我尝试运行 red5 服务器时,出现以下错误,请帮忙

根目录:/usr/local/red5 部署类型:引导程序 Logback 选择器:org.red5.logging.LoggingContextSelector 设置默认日志记录上下文:默认 11:27:39.838 [main] INFO org.red5.server.Launcher - Red5 服务器 1.0.0 RC1 $Rev: 4171 $(http://code.google.com/p/red5/) Red5 服务器 1.0.0 RC1 $Rev: 4171 $ (http://code.google.com/p/red5/) SLF4J: 类路径包含多个 SLF4J 绑定。SLF4J: 在 [jar:file:/usr/local/red5/red5.jar!/org/slf4j/impl/StaticLoggerBinder.class] 中发现绑定 SLF4J: 在 [jar:file:/usr/local/red5/lib/logback-classic-0.9.26.jar!/org/slf4j/impl/StaticLoggerBinder.class] 中发现绑定 SLF4J: 参见http://www.slf4j.org/codes.html#multiple_bindings以获得解释。11:27:39.994 [main] INFO oscsFileSystemXmlApplicationContext - 刷新 org.springframework.context.support.FileSystemXmlApplicationContext@39d85f79:启动日期 [2009 年 12 月 21 日星期一 11:27:39 EST];上下文层次结构的根 11:27:40.149 [main] INFO osbfxml.XmlBeanDefinitionReader - 从类路径资源 [red5.xml] 加载 XML bean 定义异常 org.springframework.beans.factory.BeanDefinitionStoreException:IOException 从类路径资源 [red5.xml] 解析 XML 文档;嵌套异常为 java.io.FileNotFoundException:类路径资源 [red5.xml] 无法打开,因为它不存在 Bootstrap 完成

答案1

好的。所以网站上的说明让你和我有点走错了方向。

你需要做的是使用以下方式构建 red5 dist

ant clean dist

如图所示

http://trac.red5.org/wiki/Install

然后进入 dist 目录

cd <checkout-path>/dist

然后做

export RED5_HOME=`pwd`

然后运行./red5.sh

基本上,red5.sh 脚本使用 RED5_HOME 来确定 conf/red.xml 文件的位置。如果您不设置它,或者按照说明进行操作,将其设置在结帐的根目录中,那么它就找不到 conf/red5.xml 和所有其他文件。

希望这对将来的某人有所帮助。

干杯

标记

答案2

这意味着您的目录中没有 conf 文件red5

cd /usr/local/red5
cp -r dist/conf .
./red5.sh &

相关内容