Uninstall
Uninstalling the Connect SFTP Tool
Section titled “Uninstalling the Connect SFTP Tool”You can uninstall Connect for both system-wide and single-user installations. Before uninstalling, deactivate your license to release it for reuse.
System-wide uninstallation
Section titled “System-wide uninstallation”- (Optional) Backup the existing binary:
$ sudo cp /opt/connect/connect /opt/connect/connect.bak- Remove the symbolic link and binary:
$ sudo rm -f /usr/local/bin/connect$ sudo rm -f /opt/connect/connect- Remove the installation directory if it is empty (or remove it forcefully if you intentionally want to delete it):
$ sudo rmdir /opt/connect || true# or to remove recursively:$ sudo rm -rf /opt/connect- Verify removal:
$ which connect || echo "connect not found"$ connect --version # should fail if removedSingle-user uninstallation
Section titled “Single-user uninstallation”- Deactivate your license if applicable:
- Remove the binary from your local bin directory:
$ rm -f "$HOME/.local/bin/connect"- (Optional) Remove the
PATHline from your shell config if you added it during installation. Edit~/.bashrc,~/.zshrc, or the file you modified and remove the line:
export PATH="$HOME/.local/bin:$PATH"- Verify removal:
$ which connect || echo "connect not found"$ connect --version # should fail if removedIf you need to reinstall later, follow the Linux installation instructions: