Xshell Transferring files using xftp
First go to the official website to download a xftp, choose free for personal or family, then will be sent to the mailbox
Install after download is complete
After the installation is complete, open the Xshel client and press CTRL + ALT + F to use XFTP.
Using PURE-FTPD to build an FTP service
Installing PURE-FTPD
yum install -y pure-ftpd
Editing a configuration file
vim /etc/pure-ftpd/pure-ftpd.conf
Find pureftpd.pdb This line, the beginning of the # Delete
Stop the VSFTPD service because the service was previously started, and if not, do not use this step
systemctl stop vsftpd
Open PURE-FTPD Service
systemctl start pure-ftpd
Create a Directory
mkdir /data/ftp
Create user
useradd -u 1050 pure-ftp
Change directory Permissions
chown -R pure-ftp:pure-ftp /data/ftp
Create user ftp_usera,-u Pure-ftp Specify the user who is the system (mapped virtual user),-d specifies the mapped virtual user home directory
pure-pw useradd ftp_usera -u pure-ftp -d /data/ftp
Finally executed, has been built successfully
pure-pw mkdb
Xshell using XFTP to transfer files, using PURE-FTPD to build FTP services