How To Install ganglia-gmetad on CentOS 7

In this tutorial we learn how to install ganglia-gmetad on CentOS 7. ganglia-gmetad is Ganglia Metadata collection daemon

Introduction

In this tutorial we learn how to install ganglia-gmetad on CentOS 7.

What is ganglia-gmetad

Ganglia is a scalable, real-time monitoring and execution environment with all execution requests and statistics expressed in an open well-defined XML format. This gmetad daemon aggregates monitoring data from several clusters to form a monitoring grid. It also keeps metric history using rrdtool.

We can use yum or dnf to install ganglia-gmetad on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ganglia-gmetad.

Install ganglia-gmetad on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ganglia-gmetad using yum by running the following command:

sudo yum -y install ganglia-gmetad

Install ganglia-gmetad on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install ganglia-gmetad using dnf by running the following command:

sudo dnf -y install ganglia-gmetad

How To Uninstall ganglia-gmetad on CentOS 7

To uninstall only the ganglia-gmetad package we can use the following command:

sudo dnf remove ganglia-gmetad

References

Summary

In this tutorial we learn how to install ganglia-gmetad on CentOS 7 using yum and dnf.