Set up an FTP server instance in Ubuntu

Source: Internet
Author: User

Today I want to learn how to install the FTP server in Ubuntu, using vsftpd software.

1. Use the new software package manager to install vsftpd.

2 configure etc/vsftpd. conf

The problem is

1. How to restart vsftpd: sudo/etc/init. d/vsftpd restart

2 folder Permissions

 

In Ubuntu, when I want to copy files to/home/ftp, the following command is executed if I find that my permissions are insufficient:

Sudo chmod 777 ftp can indeed copy files, but the ftp software cannot connect to the ftp server. The error is 500 OOPS: vsftpd: refusing to run with writable anonymous root.

Solution:

For the root directory/home/ftp of vsftpd, the permission is: drwxrwxrwx, that is, there is no limit (maybe the chmod 777/home/ftp is accidentally executed );

However, vsftpd does not allow/home/ftp for security reasons, which leads to the above error.

Therefore, we only need to make the following changes:

Chown root: root/home/ftp

Chmod 755/home/ftp

(If you do not Log On As A root user, you may need to add sudo before. Do not forget)

OK. The problem is resolved.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.