1、查看是否安裝
rpm -q vsftpd
2、安裝方法
yum install -y vsftpd
3、查看安裝位置
whereis vsftpd
4、服務管理
//服務狀態
systemctl status vsftpd.service
//服務啟動
systemctl start vsftpd.service
//服務停止
systemctl stop vsftpd.service
//開啟啟動
systemctl enable vsftpd.service
5、待續....
?