Sonarqube 不是从 Docker 开始的



我正在尝试使用 sonar.sh start 从 Docker 运行 Sonarqube。

当我查看日志grep -i Exception *时,我看到以下内容:

ce.log:org.apache.ibatis.exceptions.PersistenceException:
ce.log:### Error querying database.  Cause: org.h2.jdbc.JdbcSQLException: Connection is broken: "java.net.ConnectException: Connection refused (Connection refused): localhost:9092" [90067-176]
ce.log:### Cause: org.h2.jdbc.JdbcSQLException: Connection is broken: "java.net.ConnectException: Connection refused (Connection refused): localhost:9092" [90067-176]
ce.log: at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:26)
ce.log:Caused by: org.h2.jdbc.JdbcSQLException: Connection is broken: "java.net.ConnectException: Connection refused (Connection refused): localhost:9092" [90067-176]
ce.log: at org.h2.message.DbException.getJdbcSQLException(DbException.java:344)
ce.log: at org.h2.message.DbException.get(DbException.java:167)
ce.log:Caused by: java.net.ConnectException: Connection refused (Connection refused)
web.log:2017.02.11 14:30:00 ERROR web[][o.a.c.c.C.[.[.[/]] Exception sending context initialized event to listener instance of class org.sonar.server.platform.web.PlatformServletContextListener
web.log:java.lang.IllegalStateException: Metric [scoverage] is already defined by the repository [com.buransky.plugins.scoverage.measure.ScalaMetrics@63c004ba]
web.log:java.lang.IllegalStateException: Webapp did not start

其中一些异常涉及数据库,但我认为这应该没有任何问题,因为我没有修改嵌入式数据库。

我认为这可能是最相关的问题,因为我在Sonarqube中添加了一个Scala插件:

web.log:java.lang.IllegalStateException: Metric [scoverage] is already defined by the repository [com.buransky.plugins.scoverage.measure.ScalaMetrics@63c004ba]

知道是什么原因导致Sonarqube在Docker中失败吗?

我在sonarqube/extensions/sonarqube/extensions/plugins中拥有sonar-scala插件。

sonarqube/extensions/中删除它后,它开始工作。不知道为什么。

最新更新