I have an instance of JIRA in my localhost. I am unable to configure pluging through my plugin panel to work through the download proxy
I have tried conflguring the proxy in the setenv.bat file:
set JVM_SUPPORT_RECOMMENDED_ARGS= "-Dhttp.proxyHost=proxyprd.abc.com -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=*abc.com|*.abc.com|localhost"
I have also tried the workaround(disable upm):
set JVM_SUPPORT_RECOMMENDED_ARGS=" -Dupm.pac.disable=true"
and also going to:
http://localhost:8080/admin/viewplugins.action
to try to disable plugins... no luck
Wrong Syntax, Don't need double quotes.
set JVM_SUPPORT_RECOMMENDED_ARGS= -Dhttp.proxyHost=proxyprd.abc.com -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=*abc.com|*.abc.com|localhost
I modified setenv.sh to have these lines:
PROXY_ARGS="-Dhttp.proxyHost=proxy.mycorp.com -Dhttp.proxyPort=8080"
JAVA_OPTS="-Xms256m -Xmx512m -XX:MaxPermSize=256m $JAVA_OPTS -Djava.awt.headless=true ${PROXY_ARGS} "
export JAVA_OPTS
Note: don't forget that last space after the ${PROXY_ARGS} before the quote!!!
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.