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-https
andlsb-release
packages 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-release
2. 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.list
4. Update the package information:
apt-get update
Installing agent
On your terminal, install the Wazuh agent:
apt-get install wazuh-agent
2. (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:
sed -i "s/^deb/#deb/" /etc/apt/sources.list.d/wazuh.list
apt-get update
Alternately, you can set the package state to hold
, which will stop updates (although you can still upgrade it manually using apt-get install
).
echo "wazuh-agent hold" | sudo dpkg --set-selections
Last updated
Was this helpful?