Install agent with DEB packages
The DEB packages are suitable for Debian, Ubuntu, and other Debian-based systems.
Adding the repository
The first step to installing the Wazuh agent is to add the Wazuh repository to your server. Alternatively, if you prefer to download the wazuh-agent package directly
To perform this procedure, the
curl,apt-transport-httpsandlsb-releasepackages must be installed on your system. If they are not already present, install them using the commands below:
apt-get install curl apt-transport-https lsb-release2. Install the Wazuh repository GPG key:
curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | apt-key add -3. Add the repository:
echo "deb https://packages.wazuh.com/3.x/apt/ stable main" | tee /etc/apt/sources.list.d/wazuh.list4. Update the package information:
apt-get updateInstalling agent
On your terminal, install the Wazuh agent:
apt-get install wazuh-agent2. (Optional) Disable the Wazuh updates:
It is recommended that the Wazuh repository be disabled in order to prevent accidental upgrades. To do this, use the following command:
Alternately, you can set the package state to hold, which will stop updates (although you can still upgrade it manually using apt-get install).
Last updated
Was this helpful?