How To Install proftpd-mysql on Rocky Linux 8
Introduction
In this tutorial we learn how to install proftpd-mysql
on Rocky Linux 8.
What is proftpd-mysql
Module to add MySQL support to the ProFTPD FTP server.
We can use yum
or dnf
to install proftpd-mysql
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install proftpd-mysql.
Install proftpd-mysql 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 proftpd-mysql
using dnf
by running the following command:
sudo dnf -y install proftpd-mysql
Install proftpd-mysql 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 proftpd-mysql
using yum
by running the following command:
sudo yum -y install proftpd-mysql
How To Uninstall proftpd-mysql on Rocky Linux 8
To uninstall only the proftpd-mysql
package we can use the following command:
sudo dnf remove proftpd-mysql
proftpd-mysql Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/78
/usr/lib/.build-id/78/07e7502a3bb1c9cb10957f953ba523669ae507
/usr/libexec/proftpd/mod_sql_mysql.so
References
Summary
In this tutorial we learn how to install proftpd-mysql
on Rocky Linux 8 using yum and dnf.