How To Install lasso on CentOS 7

In this tutorial we learn how to install lasso on CentOS 7. lasso is Liberty Alliance Single Sign On

Introduction

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

What is lasso

Lasso is a library that implements the Liberty Alliance Single Sign On standards, including the SAML and SAML2 specifications. It allows to handle the whole life-cycle of SAML based Federations, and provides bindings for multiple languages. Lasso is a library that implements the Liberty Alliance Single Sign On standards, including the SAML and SAML2 specifications. It allows to handle the whole life-cycle of SAML based Federations, and provides bindings for multiple languages.

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

Install lasso on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install lasso

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

sudo dnf -y install lasso

How To Uninstall lasso on CentOS 7

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

sudo dnf remove lasso

References

Summary

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