Skip to content

Uninstall

You can uninstall Connect for both system-wide and single-user installations. Before uninstalling, deactivate your license to release it for reuse.

Deactivate your license

  1. (Optional) Backup the existing binary:
Terminal window
$ sudo cp /opt/connect/connect /opt/connect/connect.bak
  1. Remove the symbolic link and binary:
Terminal window
$ sudo rm -f /usr/local/bin/connect
$ sudo rm -f /opt/connect/connect
  1. Remove the installation directory if it is empty (or remove it forcefully if you intentionally want to delete it):
Terminal window
$ sudo rmdir /opt/connect || true
# or to remove recursively:
$ sudo rm -rf /opt/connect
  1. Verify removal:
Terminal window
$ which connect || echo "connect not found"
$ connect --version # should fail if removed
  1. Deactivate your license if applicable:

Deactivate your license

  1. Remove the binary from your local bin directory:
Terminal window
$ rm -f "$HOME/.local/bin/connect"
  1. (Optional) Remove the PATH line from your shell config if you added it during installation. Edit ~/.bashrc, ~/.zshrc, or the file you modified and remove the line:
Terminal window
export PATH="$HOME/.local/bin:$PATH"
  1. Verify removal:
Terminal window
$ which connect || echo "connect not found"
$ connect --version # should fail if removed

If you need to reinstall later, follow the Linux installation instructions:

Linux installation