Sonar Runner 404 localhost

╄→гoц情女王★ 提交于 2019-12-04 06:47:42

问题


I'm trying to get Sonar working locally on an OS X box to do some proof of concept work, I've downloaded the following:

Sonar Qube: 4.5.6

Sonar Runner: 2.4

Sonar Qube is configured as:

sonar.web.host=localhost
sonar.web.context=/sonar
sonar.web.port=9000

When I try and use Sonar Runner with one of the example projects I get the following error:

ERROR: Error during Sonar runner execution
ERROR: Fail to request server version
ERROR: Caused by: Status returned by url : 'http://localhost:9000/sonar/api/server/version' is invalid : 404

If I copy and paste the URL from the console into the browser then the page loads (displaying 4.5.6).

What could be causing the script to receive a 404?

The box is behind a proxy but nothing should be trying to get to the outside world

UPDATE: Changing the configuration from localhost to using the machines IP address produces a timeout rather than a 404, everything still works fine through the browser.


回答1:


So it turned out my problem was that the JVM wasn't using the proxy settings of my machine, I had to add the following to the Sonar runner script.

SONAR_RUNNER_OPTS="-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=my.local.host"  



回答2:


It's possible that HTTP queries from sonar-runner are routed based on system proxy settings, while your browsers may use their own proxy settings.

Go check the system-wide setting:

System Preferences/Network/Advanced/Proxies/Bypass proxy settings for these Hosts & Domains

And make sure that localhost/127.0.0.1 is in there.



来源:https://stackoverflow.com/questions/34265571/sonar-runner-404-localhost

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!