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
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"
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.