Linux (13) _ vsftpd server, linux _ vsftpd
Rpm-qa | grep vsftpd
Yum search vsftpd
Yum install vsftpd
Check whether the instance has been started:
Service vsftpd status
Start:
Service vsftpd start
Enter the address in the browser to access:Remember to close the firewall before.
Click my computer, and enter the FTP address in the address bar to access it directly in the form of resource manager.
Rewrite the main configuration file
Anonymous_enable = NOAnonymous users are not allowed to log on.
Service vsftpd start restart will affect user connection
You must enter the user name and password to log on.
Now we can change the master configuration file to open the Upload File Permission:
Anon_upload_enable = YES
I still cannot upload files. Why?
Share files in/var/ftp/pub on linux. Check the permissions:
Other users cannot have the write permission. Then we open the permission
Chmod-R 777 pub/
However, you still cannot upload files. I don't know why?