zabbix_agentd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zabbix_agentd: command not found
or when using sudo you get the following error message
sudo: zabbix_agentd: command not found
Solutions to zabbix_agentd: command not found
How To Fix zabbix_agentd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zabbix_agentd is provided by zabbix-agent package.
zabbix-agent is:
Zabbix is a server/client network monitoring system with many features. It can be used for:
- high level monitoring of IT services;
- centralized monitoring of your servers and applications;
- monitoring of SNMP-enabled devices;
- performance monitoring (process load, network activity, disk activity, memory usage, OS parameters etc.);
- data visualization.
This package provides the software needed to monitor a host using a Zabbix agent.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zabbix-agent
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zabbix-agent.
sudo apt -y install zabbix-agent
Or if you have aptitude installed you can use the following command.
sudo aptitude install zabbix-agent
Summary
In this tutorial we learn how to fix zabbix_agentd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.