Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article applies to all JSDR software versions.

Issue

Currently, proxy setting configuration is not available for the MSA and appliances do not have proxy settings available for configuring through UI/ deploy deployment options. Also Furthermore, all stateless appliances cannot be configured to use permanent proxy settings.

However, if If the MSA needs to reach out connect to the MMS subscription server through proxy, the following workaround can be performed:

Solution

...

JetDR MSA Version 4.x

...

  • Edit the file /etc/init.d/vme2

...

  • .

Code Block
...
CATALINA_OPTS_MEM="-server -Xms3g -Xmx3g"
current_date=`date +%s`
CATALINA_OPTS_DUMP="-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath='/tmp/jetdr-${current_date}.hprof'"
CATALINA_OPTS_EXTRA="-Djava.awt.headless=true -Djava.security.egd=file:///dev/urandom -Djavax.xml.bind.context.factory=com.sun.xml.internal.bind.v2.ContextFactory"

CATALINA_OPTS_PROXY='-Dhttps.proxyHost=<proxy ip/fqdn> -Dhttps.proxyPort=<proxy port> -Dhttp.nonProxyHosts="localhost|127.0.0.1*|<local subnet(s)>"'

[ -z "$CATALINA_OPTS" ] && CATALINA_OPTS="$CATALINA_OPTS_MEM $CATALINA_OPTS_DUMP $CATALINA_OPTS_EXTRA $CATALINA_OPTS_PROXY"
export JRE_HOME CATALINA_OPTS
...

...

  • For example, line 7 was added and

...

  • references CATALINA_OPTS_PROXY on line 9.

...

    • Local subnets have to be mentioned in wildcard format (e.g. 10.* or *.

...

    • jetstreamsoft.

...

JetDR MSA Version 5.0 and later

...

  • In JetDR 5.0 and later

...

  • MSAs, changes similar

...

  • to those described above should be

...

  • performed in the file /etc/tomcat/conf.d/fio.conf

...

  • .

  • After changes have been made the msa-tomcat service

...

  • must be restarted.