Configure a MySQL connection

Who can use this feature?

A connection is an authentication mechanism to allow Totango to integrate with another system. Each connector has different requirements for connection. You can reuse connections to support multiple integration jobs. 

Data warehouse integrations are a closed system; you cannot reuse data warehouse connections for other integration families. 

A MySQL connector is a pure database connection; it is built as a connector and a SQL query powers the connection.

1. Create a MySQL user

We recommend that you create a specific user for fetching data with proper database access permissions (e.g. read-only access to a specific schema or a table). 

  1. Connect to your MySQL database.
  2. Give the user access to the database from any host: 
    GRANT SELECT ON table_name.* to 'totango_ro_user'@'%' identified by 'A Secure Password of your choosing';
  3. If you know the hostname or IP address of the host that the collector is will be installed on, type the following command:
    GRANT SELECT ON table_name.* to 'totango_ro_user'@'hostname or IP_address' identified by 'A Secure Password of your choosing';

2. Create a MySQL connection in Totango 

In the event that your network is behind a firewall, you will need to whitelist our servers so that we may retrieve information from your data warehouse.

In case your company uses VPN to allow access to your MySQL database, the Totango system will not be able to access it. If you want the Totango system to retrieve data from a MySQL database, please create an accessible MySQL database outside your network and push only the relevant information to this MySQL database in a secure manner.

  1. In Totango, click Settings from the left nav.
  2. Expand Data Management > Customer Data Hub.
  3. From the list of active connectors (left), choose Data Warehouses.
  4. From the list of available connectors, hover over MySQL, and click Connect (or View Integrations).
    mceclip0.png
  5. Enter a name and description for the connection. Because you can have multiple connections with a connector (using different authentication profiles), a name and description helps you identify the connection later.
  6. Add the remaining details for the connection:
    • Username: Username of the user you plan to give access to your database for Totango
    • Password: Password of the user
    • Database: Database where this connector data should be fetched from
    • Host name: Host name of your MySQL instance
    • Port: Port of the MySQL instance. By default, it is 3306.
    • Create SSH Tunnel: Learn more
  7. Click Connect.

You can now set up an integration using the connection.

All data warehouse connectors support SSL encryption. By default, Totango uses SSL encryption during connecting. If the data warehouse server does not support SSL encryption, the connection will use an unencrypted connection to stream data from the data warehouse.

Was this article helpful?

0 out of 0 found this helpful

Have more questions? Submit a request