How To Install neutron-metering-agent on Ubuntu 20.04
Introduction
In this tutorial we learn how to install neutron-metering-agent on Ubuntu 20.04.
What is neutron-metering-agent
neutron-metering-agent is:
Neutron is a virtual network service for Openstack, and a part of Netstack. Just like OpenStack Nova provides an API to dynamically request and configure virtual servers, Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (e.g., virtual NICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities (e.g., QoS, ACLs, network monitoring, etc.)
This package provides the metering agent.
Package: neutron-metering-agent Architecture: all Version: 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2 Priority: optional Section: universe/net Source: neutron Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 46 Depends: python3-neutron (= 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2) Breaks: neutron-plugin-metering-agent (« 1:2014.1~b3-0ubuntu2~) Replaces: neutron-plugin-metering-agent (« 1:2014.1~b3-0ubuntu2~) Filename: pool/universe/n/neutron/neutron-metering-agent_16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2_all.deb Size: 5152 MD5sum: e4fec7c307ff0cbaedb688f6e293b080 SHA1: 227a468556b523e48ae00f48156443a81c52ffad SHA256: 6172ee3f0d837c8792264b76714ec375bf808e5c73565aa480647117cf46f85a Homepage: https://docs.openstack.org/neutron Description-en: Neutron is a virtual network service for Openstack - metering agent Neutron is a virtual network service for Openstack, and a part of Netstack. Just like OpenStack Nova provides an API to dynamically request and configure virtual servers, Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (e.g., virtual NICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities (e.g., QoS, ACLs, network monitoring, etc.)
This package provides the metering agent.
There are three methods to install neutron-metering-agent on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install neutron-metering-agent Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install neutron-metering-agent using apt-get by running the following command:
sudo apt-get -y install neutron-metering-agent
Install neutron-metering-agent Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install neutron-metering-agent using apt by running the following command:
sudo apt -y install neutron-metering-agent
Install neutron-metering-agent Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install neutron-metering-agent using aptitude by running the following command:
sudo aptitude -y install neutron-metering-agent
How To Uninstall neutron-metering-agent on Ubuntu 20.04
To uninstall only the neutron-metering-agent package we can use the following command:
sudo apt-get remove neutron-metering-agent
Uninstall neutron-metering-agent And Its Dependencies
To uninstall neutron-metering-agent and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove neutron-metering-agent
Remove neutron-metering-agent Configurations and Data
To remove neutron-metering-agent configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge neutron-metering-agent
Remove neutron-metering-agent configuration, data, and all of its dependencies
We can use the following command to remove neutron-metering-agent configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge neutron-metering-agent
References
Summary
In this tutorial we learn how to install neutron-metering-agent package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.