Linux installation vsftpd is a technical work, but after mastering the method, everything becomes very simple. This article takes CentOS 6.3 as a configuration environment for VS
FTPD's installation. Command Yum Install VSFTPD method/Step 1 Download the traditional installation software method under Vsftpdlinux is to download the tar.gz installation package, or the RPM installation package, and then compile it after decompression, or install it with the Rpm-i command. The process is more cumbersome, in fact, there is a more straightforward way is to use the Yum command to install online, support almost all common software, it is the benefit of reading the list of multiple mirror servers in the latest version, all fool operation. The benefits of the 2yum command have been shown, when the installation command is finished, first read the resources from the server, then select the installation package, and finally the user decides whether to install, here we press Y to confirm the installation. When "complete!" appears means that the installation is complete. It is important to note that, in Linux, the system is strictly sensitive to case, such as ABC and ABC are completely different characters, pay special attention to. 3 configuration vsftpd After installation, we will configure it for normal use. Edit the VSFTPD profile Vi/etc/vsftpd/vsftpd.confvi the search mission in the editor is Slash "/", then enter what you want to find, enter OK. The following is the option to change anonymous_enable=no #禁止匿名访问ascii_upload_enable #允许使用ascii码上传ascii_download_enable # Allow the use of ASCII code to download Userlist_deny=no # (This need to be manually added to the end) using the FTP user table, the table does not have users need to add to log on after the setup, ESC, colon wq carriage return. Start the VSFTPD service/etc/init.d/vsftpd start and see [OK] to start successfully. Only start up not yet, but also to add power on auto-start, chkconfig vsftpd on 4 Add boot is no prompt, if not sure if you have joined the boot entry can run chkconfig–list to view. Add users to it after installation and configuration to use, here to add users Baidu as an example. Useradd Baidu Enter, and then for Baidu This user add password passwd Baidu, will be prompted to enter the password two times. We then add the Baidu user to the FTP user table. Vi/etc/vsftpd/user_list, the other initial users to delete all, add just our new Baidu user. 5linuxCloseSELinuxAnd thenreboot RestartLinuxserver. I useFlashFXPclient software is connected until the user home directory appears (typically located in/home/user name), thevsftpdinstalled and running successfully. Then you can upload and download the file.
Install vsftp under Linux