Advertisement
Guest User

Untitled

a guest
Dec 15th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. 2016.12.15 11:54:11 ERROR web[][o.s.s.p.UpdateCenterClient] Fail to connect to update center
  2. org.sonar.api.utils.SonarException: Fail to download: https://update.sonarsource.org/update-center.properties (HTTP proxy: MY-PROXY-IP:8080)
  3. (...)
  4. Caused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 407 authenticationrequired"
  5.  
  6. #--------------------------------------------------------------------------------------------------
  7. # UPDATE CENTER
  8.  
  9. # Update Center requires an internet connection to request http://update.sonarsource.org
  10. # It is enabled by default.
  11. #sonar.updatecenter.activate=true
  12.  
  13. # HTTP proxy (default none)
  14. http.proxyHost=MY-PROXY-IP
  15. http.proxyPort=8080
  16. # HTTPS proxy (defaults are values of http.proxyHost and http.proxyPort)
  17. #https.proxyHost=
  18. #https.proxyPort=
  19.  
  20. # NT domain name if NTLM proxy is used
  21. #http.auth.ntlm.domain=
  22.  
  23. # SOCKS proxy (default none)
  24. #socksProxyHost=
  25. #socksProxyPort=
  26.  
  27. # Proxy authentication (used for HTTP, HTTPS and SOCKS proxies)
  28. http.proxyUser=MY-PROXY-USER
  29. http.proxyPassword=MY-PROXY-PASSWORD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement