How To Install glue-schema on CentOS 7

In this tutorial we learn how to install glue-schema on CentOS 7. glue-schema is LDAP schema files for the GLUE 1.3 and GLUE 2.0 Schema

Introduction

In this tutorial we learn how to install glue-schema on CentOS 7.

What is glue-schema

The GLUE specification is an information model for Grid entities such as computing clusters and data storage facilities. As a conceptual model, it is designed to be independent from the concrete data models adopted for its implementation. The specification can be rendered to several concrete data models such as XML Schema, LDAP Schema or SQL. This package provides LDAP schema files for the GLUE 1.3 and GLUE 2.0 Schema.

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

Install glue-schema on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install glue-schema

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

sudo dnf -y install glue-schema

How To Uninstall glue-schema on CentOS 7

To uninstall only the glue-schema package we can use the following command:

sudo dnf remove glue-schema

References

Summary

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