Getting Started > Runtime environment configuration > Installing in Linux
  

Installing in Linux

On Linux, the Secure Agent runs as a process. You can use a shell command line to install, register, start, stop, and uninstall the Secure Agent.
You can also use the shell command line to check the Secure Agent status.
When you install a Secure Agent, you perform the following tasks:
  1. 1Verify that the machine meets the minimum requirements.
  2. 2Download the Secure Agent installer files.
  3. 3Install and register the Secure Agent.
Consider the following guidelines:

Secure Agent requirements on Linux

You can install the Secure Agent on any machine that has internet connectivity and can access Informatica Intelligent Cloud Services. Before you install the Secure Agent on Linux, verify the system requirements.
Verify the following requirements before you install the Secure Agent on Linux:
For more information, see this KB article: Minimum requirements and best practices when installing Informatica Cloud Secure Agent.

Configure the firewall

If your organization uses a protective firewall, include the Informatica Intelligent Cloud Services domain name or IP address ranges in the list of approved domain names or IP addresses. To ensure that the Secure Agent can perform all necessary tasks through the firewall, enable the port that the Secure Agent uses.
The Secure Agent uses port 443 (HTTPS) to connect to the internet. Configure your firewall to allow traffic to pass over port 443.
The allowlists of domains and IP addresses can vary according to your POD (Point of Deployment). You can identify your POD through the URL that appears when you open any service in Informatica Intelligent Cloud Services. The first few characters of the URL string identify the POD. For example, if the URL starts with usw3.dm-us.informaticacloud.com, your POD is USW3.
For the allowlists of Informatica Intelligent Cloud Services domains and IP addresses for different PODs, see Pod Availability and Networking on the Documentation Portal or click the link at the top of the Runtime Environments page in Administrator.

Setting Secure Agent permissions on Linux

A Secure Agent requires certain permissions to transfer data between sources and targets.
When you install a Secure Agent on Linux, the Secure Agent must have read/write/execute permissions for the installation directory.

Downloading and installing the Secure Agent on Linux

To install the Secure Agent on a Linux machine, you must download and run the Secure Agent installation program and then register the agent.
Secure Agent registration requires an install token. To get the install token, copy the token when you download the agent or use the Generate Install Token option in Administrator. The token expires after 24 hours.
When you register the agent, it is added to its own Secure Agent group by default. You can add the agent to a different Secure Agent group.
Before you download and install the Secure Agent, verify that no other Secure Agent is installed on the machine using the same Linux user account. If there is, you must uninstall it.
Tip: To verify the checksum of the Secure Agent installation program, use the agent REST API version 2 resource. For more information about the agent resource, see REST API Reference.
    1Open Administrator and select Runtime Environments.
    2On the Runtime Environments page, click Download Secure Agent.
    3Select the Linux 64-bit operating system platform, copy the install token, and then click Download.
    The installation program is downloaded to your machine. The name of the installation program is agent64_install_ng_ext.<agent core version>.bin.
    4Save the installation program to a directory on the machine where you want to run the Secure Agent.
    Note: If the file path contains spaces, the installation might fail.
    5From a shell command line, navigate to the directory where you downloaded the installation program and enter the following command:
    ./agent64_install_ng_ext.bin -i console
    6When the installer completes, navigate to the following directory:
    <Secure Agent installation directory>/apps/agentcore
    7To start the Secure Agent, enter the following command:
    ./infaagent startup
    The Secure Agent Manager starts. You must register the agent using the user name that you use to access Informatica Intelligent Cloud Services. You must also supply the install token.
    8If you did not copy the install token when you downloaded the agent, click Generate Install Token on the Runtime Environments page in Administrator, and copy the token.
    9To register the agent, in the <Secure Agent installation directory>/apps/agentcore directory, enter one of the following commands using your Informatica Intelligent Cloud Services user name and the token that you copied:
    The following table lists the command options:
    Option
    Description
    User Name
    Required. Informatica Intelligent Cloud Services user name of the user installing the Secure Agent.
    Install Token
    Required. The install token that you copied.
    Secure Agent group name
    Optional. Include when you want to add the agent to an existing Secure Agent group instead. If this option isn’t included in the command, the agent will be in its own Secure Agent group.
    You can check the registration status of a Secure Agent using the following command:
    ./consoleAgentManager.sh isConfigured

Configure the proxy settings on Linux

If your organization uses an outgoing proxy server to connect to the internet, the Secure Agent connects to Informatica Intelligent Cloud Services through the proxy server. The Secure Agent installer configures the proxy server settings for the Secure Agent based on settings configured in the browser. Update the proxy server settings from the command line and in the Administrator service.
    1Open a command prompt and navigate to the following directory:
    <Secure Agent installation directory>/apps/agentcore
    2Use a shell command that updates the proxy.ini file. Contact the network administrator to determine the proxy settings.
    Use the following command to update the proxy.ini file:
    ./consoleAgentManager.sh configureProxy <proxy host> <proxy port> <proxy user name> <proxy password>
    3Log in to Informatica Intelligent Cloud Services.
    4Open the Administrator Service and select Runtime Environments.
    5Select the Secure Agent for which you want to configure a proxy server.
    6On the upper-right corner of the page, click Edit.
    7In the System Configuration Details section, set the Service property to Data Integration Server and set the Type property to DTM.
    8Add the parameters that you require to any available JVMOption field and specify appropriate values for each parameter.
    The following table describes the parameters that you can add:
    Parameter
    Description
    -Dhttp.proxyHost=
    Host name of the outgoing HTTP proxy server.
    -Dhttp.proxyPort=
    Port number of the outgoing HTTP proxy server.
    -Dhttp.proxyUser=
    Authenticated user name for the HTTP proxy server. This is required if the proxy server requires authentication.
    -Dhttp.proxyPassword=
    Password for the authenticated user. This is required if the proxy server requires authentication.
    -Dhttps.proxyHost=
    Host name of the outgoing HTTPS proxy server.
    -Dhttps.proxyPort=
    Port number of the outgoing HTTPS proxy server.
    -Dhttps.proxyUser=
    Authenticated user name for the HTTPS proxy server. This is required if the proxy server requires authentication.
    -Dhttps.proxyPassword=
    Password for the authenticated user. This is required if the proxy server requires authentication.
    Example for HTTP:
    JVMOption1=-Dhttp.proxyHost=<proxy_server_hostname>
    JVMOption2=-Dhttp.proxyPort=8081
    JVMOption3=-Dhttp.proxyUser=<proxy_user_name>
    JVMOption4=-Dhttp.proxyPassword=<proxy_password>
    Example for HTTPS:
    JVMOption1=-Dhttps.proxyHost=<proxy_server_hostname>
    JVMOption2=-Dhttps.proxyPort=8081
    JVMOption3=-Dhttps.proxyUser=<proxy_user_name>
    JVMOption4=-Dhttps.proxyPassword=<proxy_password>
    9Click Save.
    The Secure Agent restarts to apply the settings.