centos7 set up ftp server and configure anonymous users

What is FTP?

FTP (File Transfer Protocol, File Transfer Protocol) is one of the protocol on TCP / IP networks and the Internet was first used. Used to implement transfer files from one computer to another computer, or to receive and view the files on another computer. With the help of software generally need to complete. This aspect of the software includes FlashFXP, leapftp and so on. Although Wide Word  Web (the WWW) has replaced most of the features of FTP, FTP is still copying files over the Internet from a client to a way on the server.

installation steps

1. Install the ftp server

yum install vsftpd -y

2. modify the configuration file

vim /etc/vsftpd/vsftpd.conf

Ensure that the parameters for the following settings

anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES

 

 3. Turn vsftp and set to boot automatically start vsftp

systemctl start vsftpd.service
systemctl enable vsftpd.service

Guess you like

Origin www.cnblogs.com/qxfy/p/12021681.html