How To Install regindexer on CentOS 7

In this tutorial we learn how to install regindexer on CentOS 7. regindexer is Tool for creating an index of a container registry

Introduction

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

What is regindexer

regindexer is a tool for creating an index of a container registry. It can be run manually from the command line, or can run run as a daemon rebuilding the index when it sees messages from Bodhi.

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

Install regindexer on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install regindexer

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

sudo dnf -y install regindexer

How To Uninstall regindexer on CentOS 7

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

sudo dnf remove regindexer

References

Summary

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