BBBの奇妙なエラー履歴

BBBの奇妙なエラー履歴

私はインストールしました大きな青いボタンDebian ストレッチで。ただし、最初のページで「demo」ユーザーとしてログインすると、bbb_api_conf.jspFirefoxでファイルの欠落に関するTomcat / Javaエラーが発生します。

何をすべきか?

HTTP Status 500 - /demo1.jsp (line: 38, column: 1) /bbb_api.jsp (line: 36, column: 1) File [bbb_api_conf.jsp] not found

type Exception report

message /demo1.jsp (line: 38, column: 1) /bbb_api.jsp (line: 36, column: 1) File [bbb_api_conf.jsp] not found

description The server encountered an internal error that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: /demo1.jsp (line: 38, column: 1) /bbb_api.jsp (line: 36, column: 1) File [bbb_api_conf.jsp] not found
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:42)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:291)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:97)
    org.apache.jasper.compiler.Parser.processIncludeDirective(Parser.java:348)
    org.apache.jasper.compiler.Parser.parseIncludeDirective(Parser.java:381)
    org.apache.jasper.compiler.Parser.parseDirective(Parser.java:484)
    org.apache.jasper.compiler.Parser.parseFileDirectives(Parser.java:1800)
    org.apache.jasper.compiler.Parser.parse(Parser.java:142)
    org.apache.jasper.compiler.ParserController.doParse(ParserController.java:244)
    org.apache.jasper.compiler.ParserController.parseDirectives(ParserController.java:127)
    org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:197)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:372)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:349)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:333)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:600)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:368)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
note The full stack trace of the root cause is available in the Apache Tomcat/8.5.8 (Debian) logs.

ベストアンサー1

このエラーは、構成ファイルがbbb_api_conf.jsp欠落していることを示します。

調査するフラッグハブプロジェクト内のファイルはそのまま検索できます。

<%!
// This is the security salt that must match the value set in the BigBlueButton server
// You can get this by executing `bbb-conf --salt`
String salt = "";

// This is the URL for the BigBlueButton server
String BigBlueButtonURL = "";
%>

ドキュメントのアドバイスに従って、次を実行します。

$sudo bbb-conf --salt

   URL: http://bbb.internal/bigbluebutton/
  Salt: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx5

したがって、ファイルは次のように配置されます/var/lib/tomcat8/webapps/demo/bbb_api_conf.jsp

<%!
// This is the security salt that must match the value set in the BigBlueButton server
// You can get this by executing `bbb-conf --salt`
String salt = "5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx5";

// This is the URL for the BigBlueButton server
String BigBlueButtonURL = "http://bbb.internal/bigbluebutton/";
%>

そしてまだやるべきことは次のとおりです。

sudo chown tomcat8.tomcat8 /var/lib/tomcat8/webapps/demo

その後、BBBは正しく開きます。

bbb

おすすめ記事