aodh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aodh: command not found
or when using sudo you get the following error message
sudo: aodh: command not found
Solutions to aodh: command not found
How To Fix aodh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aodh is provided by python3-aodhclient package.
python3-aodhclient is:
Aodh provides alarming for OpenStack. The alarming component of Aodh, first delivered in the Havana version, allows you to set alarms based on threshold evaluation for a collection of samples. An alarm can be set on a single meter, or on a combination. For example, you may want to trigger an alarm when the memory consumption reaches 70% on a given instance if the instance has been up for more than 10 min.
This package contains the Python 3.x module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-aodhclient
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-aodhclient.
sudo apt -y install python3-aodhclient
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-aodhclient
Summary
In this tutorial we learn how to fix aodh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.