Static Informix agent

Target Informix

Prerequisites

To have Gluesync working with your Informix instance you will need to have:

  • Valid user credentials with permission to read, and write to the target tables.

As for now there are some limitations on some data types. Please contact us for more details in case you are encountering issues on data types mapping.

Setup via Web UI

  • Hostname / IP Address: Hostname or IP Address of your server;

  • Port: Optional, defaults to 9088;

  • Database name: Name of your database;

  • Username: Username with read/write access to the tables;

  • Password: Password belonging to the given username;

  • Max connections count: Maximum number of connections the pool can instantiate.

Specific configuration

This agent has no specific configuration properties.

Setup via Rest APIs

Here following an example of calling the CoreHub’s Rest API via curl to setup the connection for this Agent.

Connect the agent

curl --location --request PUT 'http://core-hub-ip-address:1717/pipelines/{pipelineId}/agents/{agentId}/config/credentials' \
--header 'Content-Type: application/json' \
--header 'Authorization: ••••••' \
--data '{
        "hostCredentials": {
        "connectionName": "myAgentNickName",
        "host": "host-address",
        "port": 9088,
        "databaseName": "db_name",
        "username": "",
        "password": "",
        "maxConnectionsCount": 100,
        "enableTls": true,
        "certificatePath": "/myPath/cert.pem"
      }
}'