After more than a day of hard work, we finally set up the Ftpserver.
I am referring to this article.
Http:// OS .51cto.com/art/201008/222036.htm
The article is very detailed, but because I am not familiar with ftpserver and service, I have taken many detours. It is written here, so that new users like me can take less detours and view them easily.
I used the putty client tool for remote setup. The Linux operating system is RedHat. Because the Yum method is not successfully installed, I directly use the source code method to install it.
If you do not know the usage of ftp in Linux and the differences between ftp user groups, you must first take a good look at the basic content. I am anxious to directly look at the vsftpd installation method, and the results are confused by anonymous users and virtual users.
If you use the source code for installation, there are two ways to enable vsftpd.
1. Command: vsftpd &
2. service xinetd start
Service vsftpd start cannot be used, and additional configuration is required. The configuration in that article should not be described. I spent a lot of time here, and this command was useless. I still thought it was a problem with my installation.
500 OOPS: cocould not bind listening IPv4 socket
This problem has plagued me for a long time. Let's talk about what I know:
1. If method 1 is enabled, or you have configured the vsftpd service, use service vsftpd start to start.
Pay attention to the following points.
Service xinetd stop must be disabled
Add listen = YES to the/etc/vsftpd. conf configuration file.
If you still use listen_address = an ip address in the configuration file, make sure that the ip address is available.
2. If method 2 is used.
Pay attention to the following points.
Vsftpd is disabled for both programs and services.
In contrast to the above, listen = YES in the/etc/vsftpd. conf configuration file must be commented out or deleted.
Also note the listen_address.
This article from the "Three Take Tiger" blog, please be sure to keep this source http://darhx.blog.51cto.com/7920146/1302025