Skip to content

Linux installation

You can install the Connect SFTP tool on Linux in two ways:

  • System-wide (all users)
  • Single user (local install)

To install the Connect SFTP tool system-wide, you can use the following steps:

  1. Download the Connect binary from the official website (https://connect.io/downloads).

Choose the correct binary for your system:

  • connect-linux-amd64
  • connect-linux-arm64
  • connect-darwin-amd64
  • connect-darwin-arm64

Once downloaded, you can rename it to connect and make it executable:

Terminal window
$ mv connect-linux-amd64 connect
$ chmod +x connect
  1. Create installation directory

Create a directory for Connect in /opt:

Terminal window
$ sudo mkdir -p /opt/connect
  1. Copy binary to /opt/connect

Copy the downloaded binary to the new directory:

Terminal window
$ sudo cp connect /opt/connect/
  1. Create a symbolic link

Create a symbolic link to the binary in /usr/local/bin so that it can be accessed from anywhere:

Terminal window
$ sudo ln -s /opt/connect/connect /usr/local/bin/connect
  1. Set correct permissions

Set the correct permissions for the binary:

Terminal window
$ sudo chmod 755 /opt/connect/connect
  1. Verify installation

You can verify that the installation was successful by running the following command:

Terminal window
$ connect --version
  1. Proceed to license activation

If the installation was successful, you can proceed to activate your license.

Activate your license

To install the Connect SFTP tool for a single user, you can follow these steps:

  1. Download the Connect binary from the official website (https://connect.io/downloads).

Choose the correct binary for your system:

  • connect-linux-amd64
  • connect-linux-arm64
  • connect-darwin-amd64
  • connect-darwin-arm64

Once downloaded, you can rename it to connect and make it executable:

Terminal window
$ mv connect-linux-amd64 connect
$ chmod +x connect
  1. Create a directory for Connect in your home directory

Create a directory for Connect in your home directory:

Terminal window
$ mkdir -p ~/connect
  1. Move the binary to the new directory

Move the downloaded binary to the new directory:

Terminal window
$ mv connect ~/connect/
  1. Add Connect to your PATH

Add the Connect directory to your PATH by adding the following line to your ~/.bashrc or ~/.zshrc file:

Terminal window
export PATH="$HOME/connect:$PATH"
  1. Source your shell configuration file

Source your shell configuration file to apply the changes:

Terminal window
$ source ~/.bashrc
# or
$ source ~/.zshrc
  1. Verify installation

You can verify that the installation was successful by running the following command:

Terminal window
$ connect --version
  1. Proceed to license activation

If the installation was successful, you can proceed to activate your license.
Activate your license