端くれプログラマの備忘録 Red5 [Red5] サンプルアプリがリストされない問題を解決する

[Red5] サンプルアプリがリストされない問題を解決する

Red5にはサンプルアプリとそれらを使ったデモが幾つか同梱されている。だけど、セットアップしてみたものの、サンプルアプリがリストされない。

cap-0001

サンプルアプリのパスが間違ってるんじゃないかと思っていろいろ調べたところ、その通り。リポジトリのパスがGoogle Codeから自サーバーに変わったみたいだけど、それが反映されていない箇所があったので以下のように直す。

webapps/installer/WEB-INF/red5-web.properties

webapp.contextPath=/installer
webapp.virtualHosts=localhost, localhost:5080

# Used by the installer to locate the available wars
# application.repository.url=http://red5.googlecode.com/svn/snapshots/
application.repository.url=http://red5.org/snapshots/

Gitリポジトリはこちら。

red5-server/red5-web.properties at master · Red5/red5-server · GitHub
https://github.com/Red5/red5-server/blob/master/src/main/server/webapps/installer/WEB-INF/red5-web.properties

修正して再起動したらサンプルアプリがリストされるようになった。

cap-0000