Skip to content

Upgrade

You can upgrade Connect either system-wide or for a single user. The upgrade process replaces the binary while preserving your license and configuration files.

  1. (Optional) Backup the current binary:
Terminal window
$ sudo cp /opt/connect/connect /opt/connect/connect.bak
  1. Download the appropriate new binary from the official site (https://connectcli.com/downloads) and make it executable (example for amd64):
Terminal window
$ mv connect_linux_amd64_2.0 connect
$ chmod +x connect
  1. Copy the new binary into the installation directory and set permissions:
Terminal window
$ sudo cp connect /opt/connect/
$ sudo chmod 755 /opt/connect/connect
  1. Update or recreate the symlink (uses -f to replace existing link):
Terminal window
$ sudo ln -sf /opt/connect/connect /usr/local/bin/connect
  1. Verify the upgrade:
Terminal window
$ connect --version
  1. Backup the existing binary (optional):
Terminal window
$ cp "$HOME/.local/bin/connect" "$HOME/.local/bin/connect.bak"
  1. Download and prepare the new binary:
Terminal window
$ mv connect_linux_amd64_2.0 connect
$ chmod +x connect
  1. Replace the user-local binary:
Terminal window
$ mv connect "$HOME/.local/bin/"
  1. Verify the upgrade:
Terminal window
$ connect --version

Notes:

  • Your license file (if present next to the binary) should remain valid after upgrading. If you stored the license file in the same folder as the binary, ensure it is still present after the replacement. See Deactivation if you need to move or release the license.
  • If you run Connect under a service (systemd, cron, etc.), restart the service after upgrading. See the automation/systemd docs for service management.

For full installation steps, see:

Linux installation