当我为 bigbluebutton 设置 bbb-conf 的 IP 时发生错误

当我为 bigbluebutton 设置 bbb-conf 的 IP 时发生错误
techalay@ubuntu:~$ sudo bbb-conf --setip 192.168.0.75
[sudo] password for techalay: 
Assigning 192.168.0.75 for testing for firewall in /var/www/bigbluebutton/client/conf/config.xml
Assigning 192.168.0.75 for rtmp:// in /var/www/bigbluebutton/client/conf/config.xml
Assigning 192.168.0.75 for servername in /etc/nginx/sites-available/bigbluebutton
Assigning 192.168.0.75 for http:// in /var/www/bigbluebutton/client/conf/config.xml
Assigning 192.168.0.75 for web application URL in /var/lib/tomcat6/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties
Assigning 192.168.0.75 for api demos in /var/lib/tomcat6/webapps/demo/bbb_api_conf.jsp
Assigning 192.168.0.75 for record and playback in /usr/local/bigbluebutton/core/scripts/slides.yml
Restarting the bigbluebutton server ...
 * Stopping Red5 Server red5                                                              [ OK ] 
 * Stopping Tomcat servlet engine tomcat6                                                 [ OK ] 
Stopping nginx: nginx.
Killing: 4600
Stopping OpenOffice headless server.
Record and Playback monitoring stopped

Starting FreeSWITCH
Error: stacksize -1 is too large: run ulimit -s 240 or run /opt/freeswitch/bin/freeswitch -waste.
auto-adjusting stack size for optimal performance...
5553 Backgrounding.
Waiting for FreeSWITCH to start: ...........................
Starting OpenOffice headless server
Starting nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful
nginx.
 * Starting Red5 Server red5                                                                      
                                                                                          [ OK ]
 * Starting Tomcat servlet engine tomcat6                                                 [ OK ] 
Record and Playback monitoring started
Waiting for BigBlueButton to finish starting up (this may take a minute): .Startup unsuccessful: could not connect to 192.168.0.75 bigbluebutton api

答案1

我是 BigBlueButton 的开发人员之一。

发生的事情是 bash 脚本 bbb-conf 正在尝试运行

wget http://192.168.0.75/bigbluebutton/api -O - --quiet

您可以在命令行上检查这一点,应该得到

$ wget http://192.168.0.75/bigbluebutton/api -O -
<response><returncode>SUCCESS</returncode><version>0.8</version></response>

wget 正在对 BigBlueButton 服务器(监听端口 80)进行 API 调用,获取 API 的当前版本。您能否检查服务器的 IP 地址是否为 192.168.0.75,以及端口 80 是否已打开。

答案2

看起来你可能正在安装旧版本的 BigBlueButton。你可以安装最新版本的 BigBlueButton 2.0-beta 吗?请参阅

http://docs.bigbluebutton.org/2.0/20install.html

如果您遇到同样的问题,请告诉我们。许多公司在生产中大量使用 2.0-beta,因此它相当可靠。

--

问候,......弗雷德

BigBlueButton 开发人员

相关内容