How To Install python-custodia-ipa on CentOS 7

In this tutorial we learn how to install python-custodia-ipa on CentOS 7. python-custodia-ipa is Sub-package with python2 custodia.ipa vault module

Introduction

In this tutorial we learn how to install python-custodia-ipa on CentOS 7.

What is python-custodia-ipa

Sub-package with python2 custodia.ipa vault module Custodia is a Secrets Service Provider, it stores or proxies access to keys, password, and secret material in general. Custodia is built to use the HTTP protocol and a RESTful API as an IPC mechanism over a local Unix Socket. It can also be exposed to a network via a Reverse Proxy service assuming proper authentication and header validation is implemented in the Proxy. Custodia is modular, the configuration file controls how authentication, authorization, storage and API plugins are combined and exposed.

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

Install python-custodia-ipa on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install python-custodia-ipa using yum by running the following command:

sudo yum -y install python-custodia-ipa

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

sudo dnf -y install python-custodia-ipa

How To Uninstall python-custodia-ipa on CentOS 7

To uninstall only the python-custodia-ipa package we can use the following command:

sudo dnf remove python-custodia-ipa

References

Summary

In this tutorial we learn how to install python-custodia-ipa on CentOS 7 using yum and dnf.