Skip to main content Skip to complementary content

Configuring Talend Studio to enable connection with Talend Administration Center via a proxy server with basic authentication

When working on a remote project behind a proxy server with basic authentication, you need to complete some specific settings in your Talend Studio to enable a secure connection with the remote Talend Administration Center.

Information noteNote: This documentation provides settings for both HTTP and HTTPS proxy servers. You can make your own choice based on the type of your proxy server.

For how to configure a secure connection with the Talend Administration Center using SSL, see How to configure a bidirectional secure connection between Talend Studio and Talend Administration Center on Talend Help Center (https://help.talend.com).

Procedure

  1. In your Talend Studio, select Window > Preferences > from the menu to open the Preferences window, expand the General > Network Connections nodes, and define your proxy settings.
    Alternatively, or if you are using Talend CommandLine, set your proxy by adding the following lines to the .ini file under the root of the Studio installation directory:
    -Dhttp.proxySet=true 
    -Dhttp.proxyHost=<proxy_server_host>
    -Dhttp.proxyPort=<proxy_server_port>
    -Dhttp.nonProxyHosts=localhost
    -Dhttp.proxyUser=<proxy_server_user>
    -Dhttp.proxyPassword=<proxy_server_password>
    -Dhttps.proxyHost=<proxy_server_host>
    -Dhttps.proxyPort=<proxy_server_port>
    -Dhttps.proxyUser=<proxy_server_user>
    -Dhttps.proxyPassword=<proxy_server_password>
  2. Depending on whether you are going to work on an SVN or a Git project, do the following:
    • If you need to work on an SVN project, define the following properties in the file ~/.subversion/servers:

      http-proxy-host = <proxy_server_host>
      http-proxy-port = <proxy_server_port>
      http-proxy-username = <proxy_server_username>
      http-proxy-password = <proxy_server_password>
    • If you need to work on a Git project, update the .gitconfig file as follows:

      git config --global http.proxy http://<git_username>:<git_password>@<proxy_server_host>
      git config --global https.proxy http://<git_username>:<git_password>@<proxy_server_host>

Results

After restarting your Talend Studio, you will be able to connect to Talend Administration Center via a proxy server with basic authentication.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!