Home > Article > Operation and Maintenance > How to start ftp service in centos7
1. View and install vsftpd
Execute the following command to view:
vsftpd -v
If it is not installed, execute the following command to install it:
yum -y install vsftpd
2. Configure vsftpd
Cancel anonymous login
Modify the vsftpd.conf file
vi /etc/vsftpd/vsftpd.conf
Change anonymous_enable=YES to NO, and then restart vsftpd.
Restart
systemctl vsftpd restart
Check the status of the vsftpd service
systemctl status vsftpd.service
Set up the boot
systemctl enable vsftpd.service
Recommended related tutorials: centos tutorial
The above is the detailed content of How to start ftp service in centos7. For more information, please follow other related articles on the PHP Chinese website!