Skip to main content

Creating Integrate.io ELT Connection

1
On Connection options of Source or Destination creation, select Connect via secure tunnel. Select Create a new tunnel
Connection options with Connect via secure tunnel and Create a new tunnel selected
2
Supply the region, tunnel name and the SSH tunnel details. Click Create SSH Tunnel to create the tunnel
SSH tunnel creation form with region, name, and connection details
3
Copy the SSH Public Key by clicking the Copy button and prepare your tunnel host for access.
SSH Public Key displayed with a copy button
4
Once your tunnel host is prepared, click Test Tunnel Connection to test the connection. If connection is successful, you should see the Active check.
Successful tunnel connection test showing Active status

For Linux - Preparing the tunnel host

You will need to prepare your host (either bastion host or tunnel server) by creating an integrate.io ELT user. Here’s how:
1

Create group integrate.io ELT

sudo groupadd integrate-io
2

Create user integrate.io ELT and its home directory

sudo useradd -m -g integrate-io integrate-io
3

Switch to the integrate.io ELT user

sudo su - integrate-io
4

Create the .ssh directory and change permission

mkdir ~/.ssh && chmod 700 ~/.ssh
5

Create the authorization\_keys file and change permission

touch ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys
6

Add the previously copied public key to the authorized\_keys

echo '<SSH public key>' >> ~/.ssh/authorized_keys
7
Allow access to your server’s host and port from Integrate.io ELT’s IP addresses sudo ufw allow from <Integrate.io ELT's IP addresses> to any port 22 proto tcp

For Windows - Preparing the tunnel host

We will use the Administrator user for this guide. If you are using a different user, please make sure that it belongs to the Adminstrator group. Run the following commands in Powershell as Administrator.
1

Check if SSH features are enabled

PowerShell output showing OpenSSH capability status
2

Enable SSH features if they are not installed

PowerShell output after installing OpenSSH Client and Server
3

Enable public key authentication in SSH server configuration file

You can also open the file using notepad and look for PubkeyAuthentication
4

Start the SSH server service

5

Create a firewall rule for the SSH port

PowerShell output confirming SSH firewall rule creation
6
Add the public key from Integrate.io. Replace ssh-rsa ... with the public key content
7
Allow access to your server’s host and port from Integrate.io ELT’s IP addresses.
Notes:
  • If the database is hosted inside the Windows machine and accessible locally, use the local IP of the Windows machine as the database host in Integrate.io. You can get it by running ipconfig.
  • The SSH tunnel username is Administrator for this guide.

IP Allowlist

PrivateLink for MySQL

PrivateLink for PostgreSQL

Last modified on June 1, 2026