配置 Tomcat 使用代理服务器 - 8.0

Talend安装指南

Version
8.0
Language
中文(简体)
Operating system
Linux
Subscription type
订阅
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Activity Monitoring Console
Talend Administration Center
Talend Artifact Repository
Talend CommandLine
Talend Data Preparation
Talend Data Stewardship
Talend ESB
Talend Identity and Access Management
Talend Installer
Talend JobServer
Talend Log Server
Talend MDM Server
Talend MDM Web UI
Talend Runtime
Talend SAP RFC Server
Talend Studio
Content
安装和升级
Last publication date
2022-10-30

步骤

  1. 停止 Tomcat 服务器。
  2. 设置配置。配置文件是 <TomcatPath>/bin/setenv.sh。如果该文件不存在,则创建它。
  3. 添加以下参数,即可更改参数以匹配配置:
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyHost=proxy.server.com # Specify the host name or IP address of your HTTP proxy server. You can use this parameter for http and https host names.
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyPort=YourHttpProxyPort # Specify the port number of your proxy server.
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.nonProxyHosts="localhost|host.mydomain.com|192.168.0.1" # Specify a list of hosts separated by "|" that do not require access through your proxy server.
    例如:
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyHost=proxy.server.com 
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyPort=3128
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.nonProxyHosts="localhost|host.mydomain.com|192.168.0.1"
    如果您在使用需要认证的代理,打开 <tomcat_path>/WEB-INF/classes/configuration.properties 文件并取消下列各行的注释:
    • 基于 HTTP 协议的代理:
      #http.proxyUser=someuser
      #http.proxyPassword=somepassword
    • 基于 HTTPS 协议的代理:
      #https.proxyUser=someuser
      #https.proxyPassword=somepassword
    有关代理配置的更多信息,请参阅https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html
  4. 重新启动 Tomcat 服务器。