How To Install perl-DBIx-Connector on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-DBIx-Connector
on Rocky Linux 8.
What is perl-DBIx-Connector
DBIx connection and transaction management. It allows to keep a database handle to maintain a connection in order to minimize overhead without having to worry about dropped or corrupted connections. Borrowing an interface from DBIx an API that handles the scoping of database transactions. In addition, it offers an API for savepoints if a database supports them.
We can use yum
or dnf
to install perl-DBIx-Connector
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-DBIx-Connector.
Install perl-DBIx-Connector on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-DBIx-Connector
using dnf
by running the following command:
sudo dnf -y install perl-DBIx-Connector
Install perl-DBIx-Connector on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-DBIx-Connector
using yum
by running the following command:
sudo yum -y install perl-DBIx-Connector
How To Uninstall perl-DBIx-Connector on Rocky Linux 8
To uninstall only the perl-DBIx-Connector
package we can use the following command:
sudo dnf remove perl-DBIx-Connector
perl-DBIx-Connector Package Contents on Rocky Linux 8
/usr/share/doc/perl-DBIx-Connector
/usr/share/doc/perl-DBIx-Connector/Changes
/usr/share/doc/perl-DBIx-Connector/README.md
/usr/share/man/man3/DBIx::Connector.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::Firebird.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::MSSQL.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::Oracle.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::Pg.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::SQLite.3pm.gz
/usr/share/man/man3/DBIx::Connector::Driver::mysql.3pm.gz
/usr/share/perl5/vendor_perl/DBIx
/usr/share/perl5/vendor_perl/DBIx/Connector
/usr/share/perl5/vendor_perl/DBIx/Connector.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/Firebird.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/MSSQL.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/Oracle.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/Pg.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/SQLite.pm
/usr/share/perl5/vendor_perl/DBIx/Connector/Driver/mysql.pm
References
Summary
In this tutorial we learn how to install perl-DBIx-Connector
on Rocky Linux 8 using yum and dnf.