Cài đặt FTP server (VSFTPD) trên CentOS Stream 9

Cài đặt FTP server (VSFTPD) trên CentOS Stream 9

# Cài đặt vsftpd thông qua dnf
dnf install vsftpd -y

systemctl start vsftpd

systemctl enable vsftpd

systemctl status vsftpd

# Cho phép người dùng kết nối với server thông qua FTP
firewall-cmd --add-service=ftp --permanent --zone=public

firewall-cmd --reload

Leave a Reply

Your email address will not be published. Required fields are marked *

RELATED POST

How to automatically restart Linux services with Systemd

Getting your Linux deployments working reliably is of paramount concern for production applications. One way to guarantee that a service…

How to Install SFTPGo on Ubuntu 22.04

Setup UFW Firewall For security reasons, it is recommended to install and configure the UFW firewall in your system. First,…

Executing Bash Scripts at Startup in Ubuntu Linux

Creating a Bash script in Ubuntu To create a Bash script in Ubuntu, you can use any text editor of…

How To Clear PHP’s Opcache

PHP can be configured to store precompiled bytecode in shared memory, called Opcache. It prevents the loading and parsing of PHP…