Skip to main content

Reinstalling the Endpoint Protector Client via Linux Terminal

Overview

This article describes how to reinstall the Netwrix Endpoint Protector Client on Linux using terminal commands. The process includes uninstalling the current client, updating the server IP configuration, and reinstalling the client.

For the full reference, see Linux under Agent Install Parameters in the Agent documentation.

Instructions

Uninstall and Reinstall the Netwrix Endpoint Protector Client

  1. On the Netwrix Endpoint Protector client, open the terminal.
  2. To uninstall the existing client, run the command below:
sudo bash uninstall.sh
  1. Set the Netwrix Endpoint Protector server IP address:
sudo nano options.sh
  1. Edit the file to set the correct server IP address, then save and exit.
  2. Reinstall the client:
sudo bash install.sh

Resolving Missing Dependency Errors

If you encounter missing dependency errors during installation, run the following commands:

sudo bash uninstall.sh
sudo apt update
sudo dpkg -i ./pkgs/*.deb
sudo apt update
sudo apt upgrade

The sudo dpkg -i ./pkgs/*.deb command will display any missing dependencies. Use sudo apt update and sudo apt upgrade to resolve them.

note

These commands apply to Debian-based distributions (Ubuntu, LinuxMint, Debian), which use dpkg/apt. RedHat-based distributions (CentOS, RedHat, Fedora, AWS Linux 2, OpenSuse, SUSE, SLED Linux Enterprise Server) use rpm/yum/dnf instead, and require an additional step to set the server IP. See RedHat based distributions for details.