How To Install perl-GSSAPI on CentOS 7

In this tutorial we learn how to install perl-GSSAPI on CentOS 7. perl-GSSAPI is Perl extension providing access to the GSSAPIv2 library

Introduction

In this tutorial we learn how to install perl-GSSAPI on CentOS 7.

What is perl-GSSAPI

This module gives access to the routines of the GSSAPI library, as described in RFC 2743 and RFC 2744 and implemented by the Kerberos-1.2 distribution from MIT.

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

Install perl-GSSAPI on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install perl-GSSAPI

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

sudo dnf -y install perl-GSSAPI

How To Uninstall perl-GSSAPI on CentOS 7

To uninstall only the perl-GSSAPI package we can use the following command:

sudo dnf remove perl-GSSAPI

References

Summary

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