Como Instalar vsftpd en Centos 7
FTP (File Transfer Protocol) is probably the most popular method of uploading files to a server; a wide array of FTP servers, such as vsftpd, and clients exist for every platform. Pre-Flight Check These instructions are intended specifically for installing the vsfptd on CentOS 7. I’ll be working from a Liquid Web Self Managed CentOS 7 server, and I’ll be logged in as root. Step 1: Install vsftpd Warning: FTP data is insecure; traffic is not encrypted, and all transmissions are clear text (including usernames, passwords, commands, and data). Consider securing your FTP connection with SSL/TLS. As a matter of best practice we’ll update our packages: yum -y update Then let’s install vsftpd and any required packages: yum -y install vsftpd Step 2: Configure vsftpd For a refresher on editing files with vim see: New User Tutorial: Overview of the Vim Text Editor Let’s edit the configuration file for vsftpd: vim /etc/vsftpd/vsftpd.conf Disallow anony...