How to Install VSFTPD on Rocky Linux 9

Very Secure FTP Daemon (VSFTPD) is an FTP daemon that establishes a secure connection to FTP Server by creating a secure tunnel that encrypts data flow to and from FTP Server. It has been available for many years now. This protects files being uploaded or downloaded from hackers thus enforcing end-to-end encryption between the user and FTP Server.

Installing VSFTPD

To enable FTP on your VPS, you will first need to install the VSFTPD package with the following command.

dnf install vsftpd -y

Once the installation is complete, We start the vsftpd service and enable it to start automatically at system boot.

systemctl start vsftpd
systemctl enable vsftpd

Output:

[root@server ~]# systemctl start vsftpd
[root@server ~]# systemctl enable vsftpd
Created symlink /etc/systemd/system/multi-user.target.wants/vsftpd.service → /usr/lib/systemd/system/vsftpd.service.

Next, We open the FTP port on the system firewall to allow access to the FTP service from external systems.

firewall-cmd --add-service=ftp --permanent --zone=public

firewall-cmd --reload

Output:

[root@server ~]# firewall-cmd --add-service=ftp --permanent --zone=public
success
[root@server ~]# firewall-cmd --reload
success

Creating an FTP user

Creating an FTP user and creating a password for that user.

First, We add the user,

adduser test

Next, we Setup a password for the user,

passwd test

Output:

[root@server ~]# adduser test
[root@server ~]# passwd test
Changing password for user test.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

Testing the FTP connection

Finally test FTP connection using FileZilla or WinSCP Client softwares.

Input your Server's IP or Hostname in the Host Field, the Name of the FTP user created earlier in the Username Field, and finally your Password.

If you have configured a different port for this, you will have to mention it in the Port Field.

image