0

我如何配置 WSO2 DAS 3.0.1 以通过组织中的代理服务器,因为它在启动时无法下载 Google 库?

干杯,肖恩

4

1 回答 1

0

在启动服务器以配置代理设置时,您可以将以下属性作为 JVM 选项传递。

./wso2server.sh -Dhttp.proxyHost=10.100.1.100 -Dhttp.proxyPort=8088 -Dhttp.nonProxyHosts="localhost|127.0.0.1"

或者,您可以将这些参数附加到 wso2server.sh 中的现有 JVM 选项。

-Dhttp.proxyHost=10.100.1.100 \
-Dhttp.proxyPort=8088 \
-Dhttp.nonProxyHosts="localhost|127.0.0.1" \
于 2016-08-04T12:46:49.160 回答