web analytics

How to Install Zabbix Agent on ubuntu

This article explains the steps involved in configuring the Zabbix agent on Ubuntu hosts. Step 1 – Configure Zabbix Repository wget https://repo.zabbix.com/zabbix/5.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_5.0-1+focal_all.deb sudo dpkg -i zabbix-release_5.0-1+focal_all.deb Step 2 – Install Zabbix Agent on Ubuntu sudo apt update sudo apt install zabbix-agent Step 3 – Update the Zabbix Server details To update the connectivity to Zabbix … Read more

Installing Wazuh agents on Ubuntu

1.Install Curl: (if it’s not already installed) # sudo apt-get install curl 2. Install the GPG-key: # sudo curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | sudo apt-key add – 3. Add the repository: # sudo echo “deb https://packages.wazuh.com/4.x/apt/ stable main” | sudo tee -a /etc/apt/sources.list.d/wazuh.list 4. Update the package information: # apt-get update 5. Install the Wazuh agent: … Read more