如果在安装期间没有为 VMware Identity Manager Connector 组件配置 HTTPS 代理设置,您可以在以后通过创建代理设置文件来配置这些设置。

过程

  1. 登录到 Windows Server。
  2. 创建以下文件:

    install_dir\opt\vmware\horizon\workspace\bin\proxySettings.bat

  3. 在该文件中添加以下设置:

    set "PROXY_OPTS=-Dhttps.proxyHost=proxyhost -Dhttp.proxyHost=proxyhost -Dhttps.proxyPort=proxyport -Dhttp.proxyPort=proxyport"

    其中 proxyhost 是 HTTPS 代理服务器,proxyport 是 HTTPS 代理服务器端口。

    要指定非代理主机(即,应当在不通过代理服务器的情况下访问的主机),请在 PROXY_OPTS 设置中添加以下内容:

    -Dhttps.nonProxyHosts=hostList -Dhttp.nonProxyHosts=hostList

    其中 hostList 是以 | 分隔的主机列表。它还可以包含通配符。例如:

    -Dhttps.nonProxyHosts=*.example.com|localhost -Dhttp.nonProxyHosts=*.example.com|localhost

  4. 保存文件。
  5. 运行以下脚本以重新启动该服务。

    install_dir\usr\local\horizon\scripts\horizonService.bat restart

    重要:

    不要从“服务”面板中重新启动该服务,因为无法正确更新这些设置。