I can't seem to find any instructions to set the proxy server settings for Bamboo.
For testing purposes I'm just performing a simple wget www.google.com in a task.
Note that the following does work from the console:
wget -e use_proxy=yes -e http_proxy=10.101.101.10:8080 www.google.com
I followed the JIRA doc below:
All configurations set in:
bin/setenv.sh
:
Attempt 1:
Added properties to JVM_SUPPORT_RECOMMENDED_ARGS
JVM_SUPPORT_RECOMMENDED_ARGS="-Dbamboo.paths.set.allowed=true -Dhttp.proxyHost=10.101.101.10 -Dhttp.proxyPort=8080 -Dhttps.proxyHost=10.101.101.10 -Dhttps.proxyPort=8080 -Dhttp.nonProxyHosts=10.20.*.*\|localhost"
Did not work and linking between apps failed.
Attempt 2 (as per comment in link above):
Added properties to JAVA_OPTS
JAVA_OPTS="-Xms${JVM_MINIMUM_MEMORY} -Xmx${JVM_MAXIMUM_MEMORY} ${JAVA_OPTS} ${JVM_REQUIRED_ARGS} ${JVM_SUPPORT_RECOMMENDED_ARGS} -Dhttp.proxyHost=10.101.101.10 -Dhttp.proxyPort=8080 -Dhttps.proxyHost=10.101.101.10 -Dhttps.proxyPort=8080 -Dhttp.nonProxyHosts=10.208.78.*\|localhost" #${BAMBOO_HOME_MINUSD}"
Did not work and linking between apps failed.
I have also looked at this question:
https://answers.atlassian.com/questions/27768
But I can't find the file wrapper.conf
Any suggestions on how this can be set correctly?
Looks like the instructions I posted above works after all. A couple of things to note:
Haani,
If you're trying to set up an outbound proxy so UPM will reach the internet for your server, the steps you took are correct.
Have you restarted your application after changing setenv.sh?
Best,
Thiago
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sry, i don't have an answer. Bumping this post because i have the same problem and desperately need an answer. (How was this post marked as "Solved" without a solution btw?)
I'm trying to setup the proxy settings in bamboo so that i can add a linked repository via Bitbucket Cloud.
(Side note: my bamboo installation is running as a docker image)
I too have been trying to set the proxy settings in the JVM_SUPPORT_RECOMMENDED_ARGS variable in the bin/setenv.sh file:
e.g.
-Dhttps.proxyHost=
-Dhttps.proxyPort=
-Dhttps.proxyUser=
-Dhttps.proxyPassword=
-Dhttps.nonProxyHosts=
When Bamboo starts up i can look at the "Environment Variables", i can see the JAVA_OPTS variable populated with the relevant proxy values.
Yet, as soon as i try to add a linked repository it fails with some sort of proxy error.
Trying various configurations i either get one of these errors:
----------------------------------------------------------------------------
1.) "Failed to load data from Bitbucket. com.atlassian.bamboo.plugins.bitbucket.api.BitbucketApiException: HTTP 407"
"The following error was encountered while trying to retrieve the URL: https://api.bitbucket.org/*
Cache Access Denied.
Sorry, you are not currently allowed to request https://api.bitbucket.org/* from this cache until you have authenticated yourself."
----------------------------------------------------------------------------
2.) "Failed to load data from Bitbucket. [502 Proxy Error]" on the frontend accompanied by the following in the logs:
[DefaultHttpClient] I/O exception (java.net.SocketException) caught when connecting to {s}->https://api.bitbucket.org:443: Network is unreachable (connect failed)
----------------------------------------------------------------------------
I have also configured the proxy on the environment itself and am able to connect to the Bitbucket Cloud repository using curl and make a successful call, but i can't seem to get the poxy settings to work in the JVM for Bamboo.
Any insight would be appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.