How To Install mysqlreport on CentOS 7

In this tutorial we learn how to install mysqlreport on CentOS 7. mysqlreport is A friendly report of important MySQL status values

Introduction

In this tutorial we learn how to install mysqlreport on CentOS 7.

What is mysqlreport

mysqlreport makes a friendly report of important MySQL status values. It transforms the values from SHOW STATUS into an easy-to-read report that provides an in-depth understanding of how well MySQL is running, and is a better alternative (and practically the only alternative) to manually interpreting SHOW STATUS.

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

Install mysqlreport on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install mysqlreport using yum by running the following command:

sudo yum -y install mysqlreport

Install mysqlreport 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 mysqlreport using dnf by running the following command:

sudo dnf -y install mysqlreport

How To Uninstall mysqlreport on CentOS 7

To uninstall only the mysqlreport package we can use the following command:

sudo dnf remove mysqlreport

References

Summary

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