我运行Jenkins,每个码头的sonarqube,我在sonarqube docker中安装了声纳扫描仪。我在我的浏览器localhost:9000工作中检查sonarqube 我在jenkins中配置了sonarqube和github repo,我在jenkins中构建项目我收到了错误MSG
Started by user user
Building in workspace /bitnami/jenkins/workspace/refrigerator-manager
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/dean-
kim/refrigerator-manager # timeout=10
Fetching upstream changes from https://github.com/dean-
kim/refrigerator-manager
> git --version # timeout=10
using GIT_ASKPASS to set credentials
> git fetch --tags --progress https://github.com/dean-
kim/refrigerator-manager +refs/heads/*:refs/remotes/origin/*
> git rev-parse refs/remotes/origin/master^{commit} # timeout=10
> git rev-parse refs/remotes/origin/origin/master^{commit} #
timeout=10
Checking out Revision 619639b2a173a3aa58ec05c13442168f7a8e49dd
(refs/remotes/origin/master)
> git config core.sparsecheckout # timeout=10
> git checkout -f 619639b2a173a3aa58ec05c13442168f7a8e49dd
Commit message: "fix sonar-project.properties file"
> git rev-list --no-walk 619639b2a173a3aa58ec05c13442168f7a8e49dd #
timeout=10
[refrigerator-manager] $ /sonar-scanner-3.1.0.1141-linux/bin/sonar-
scanner -Dsonar.host.url=http://localhost:9000 ******** -
Dsonar.projectName=Refrigerator-manager -Dsonar.projectVersion=1.0 -
Dsonar.sourceEncoding=UTF-8 -Dsonar.projectKey=my:project -
Dsonar.host.url=http://localhost:9000 -
Dsonar.sources=refrigeratior_manager -
Dsonar.projectBaseDir=/bitnami/jenkins/workspace/refrigerator-manager
INFO: Scanner configuration file: /sonar-scanner-3.1.0.1141-
linux/conf/sonar-scanner.properties
INFO: Project root configuration file:
/bitnami/jenkins/workspace/refrigerator-manager/sonar-
project.properties
INFO: SonarQube Scanner 3.1.0.1141
INFO: Java 1.8.0_121 Oracle Corporation (64-bit)
INFO: Linux 4.9.41-moby amd64
INFO: User cache: /home/tomcat/.sonar/cache
ERROR: SonarQube server [http://localhost:9000] can not be reached
INFO: -----------------------------------------------------------------
-------
INFO: EXECUTION FAILURE
INFO: -----------------------------------------------------------------
-------
INFO: Total time: 0.441s
INFO: Final Memory: 3M/59M
INFO: -----------------------------------------------------------------
-------
ERROR: Error during SonarQube Scanner execution
ERROR: Unable to execute SonarQube
ERROR: Caused by: Fail to get bootstrap index from server
ERROR: Caused by: Failed to connect to localhost/127.0.0.1:9000
ERROR: Caused by: Connection refused (Connection refused)
ERROR:
ERROR: Re-run SonarQube Scanner using the -X switch to enable full
debug logging.
WARN: Unable to locate 'report-task.txt' in the workspace. Did the
SonarScanner succedeed?
ERROR: SonarQube scanner exited with non-zero code: 1
Finished: FAILURE
这是我的github存储库项目根目录中的sonar-project.properties。
sonar.projectKey=my:project
sonar.projectName=Refrigerator-manager
sonar.projectVersion=1.0
sonar.sources=refrigeratior_manager
sonar.host.url=http://localhost:9000
这是我的sonarqube的jenkins系统配置
以下是sonarqube扫描仪的jenkins全局工具配置
这是我执行sonarqube扫描仪的Jenkins项目配置
我搜索谷歌几天解决这个问题,但我找不到解决方案。
答案 0 :(得分:1)
当你运行Jenkins构建时,你的sonarqube扫描仪是否正在运行? 如果没有,它将抛出上述消息,因为jenkins试图收听9000端口,但没有任何东西。
答案 1 :(得分:1)
我有像你一样的问题
无法在工作区中找到“report-task.txt”。 SonarScanner成功了吗?
我尝试在Additional arguments中使用-X
。它可以看到启用完全
调试日志。你可以使用它。
答案 2 :(得分:0)
似乎如果您使用代理,Sonar 将使用您的 maven .m2/settings.xml
中的第一个,因此如果您有多个条目,则只会尝试第一个。
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<!-- europe proxies (main proxy first for sonar!) -->
<proxy>
<id>http-eu-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>web-proxy.eu.mycompany.com</host>
<port>8080</port>
</proxy>
<proxy>
<id>https-eu-proxy</id>
<active>true</active>
<protocol>https</protocol>
<host>web-proxy.eu.mycompany.com</host>
<port>8080</port>
</proxy>
<!-- india proxies -->
<proxy>
<id>http-in-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>web-proxy.in.mycompany.com</host>
<port>8080</port>
</proxy>
<proxy>
<id>https-in-proxy</id>
<active>true</active>
<protocol>https</protocol>
<host>web-proxy.in.mycompany.com</host>
<port>8080</port>
</proxy>
</proxies>
</settings>