How To Install openslp on CentOS 7

In this tutorial we learn how to install openslp on CentOS 7. openslp is Open implementation of Service Location Protocol V2

Introduction

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

What is openslp

Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. OpenSLP is an open source implementation of the SLPv2 protocol as defined by RFC 2608 and RFC 2614. Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. OpenSLP is an open source implementation of the SLPv2 protocol as defined by RFC 2608 and RFC 2614.

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

Install openslp on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install openslp

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

sudo dnf -y install openslp

How To Uninstall openslp on CentOS 7

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

sudo dnf remove openslp

References

Summary

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