Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Problem

App ignores proxy setting -Dhttp.nonProxyHosts


Cause

Oracle JDK ignores apostrophes in the nonProxyHost declaration, but OpenJDK does not:


JVM_SUPPORT_RECOMMENDED_ARGS="-Dhttp.nonProxyHosts='<host_1_ip_addr>|<host_2_ip_addr>|*.example.com'"

Solution

If you use OpenJDK, get rid of the apostrophes in the host declaration:


JVM_SUPPORT_RECOMMENDED_ARGS="-Dhttp.nonProxyHosts=<host_1_ip_addr>|<host_2_ip_addr>|*.example.com"



  • No labels