1

我正在尝试使用 http://doc-kurento.readthedocs.org/en/stable/tutorials/java/tutorial-1-helloworld.html的 kureno 教程

我按照本例中的步骤进行操作,如下所示

git clone https://github.com/Kurento/kurento-tutorial-java.git
cd kurento-tutorial-java/kurento-hello-world
git checkout 6.2.1
mvn compile exec:java

它已编译并加载网页,并显示本地流。当它以远程流启动时。这在控制台中显示错误。

来自服务器的错误消息:[KurentoClient] 等待响应请求的超时 10000 毫秒 {"id":1133856,"method":"create","params":{"type":"MediaPipeline","constructorParams":{ }},"jsonrpc":"2.0"}

4

1 回答 1

3

使用此命令$netstat -ltnp,您可以知道 kurento-server-6 是否正在运行。如果是,你会得到这个

tcp6 0 0 :::8888 :::* 听 -

git clone https://github.com/Kurento/kurento-tutorial-java.git
cd kurento-tutorial-java/kurento-hello-world
git checkout 6.2.1
mvn compile exec:java

你在任何代理或网络后面吗?我试过这个例子,它对我有用。

于 2016-01-08T06:37:47.610 回答