适用于Centos7.x
作用 | 命令 |
---|---|
启动 | systemctl start vsftpd.service |
关闭 | systemctl stop vsftpd.service |
重启 | systemctl restart vsftpd.service |
查看运行状态 | systemctl status vsftpd.service |
设置开机启动 | systemctl enable vsftpd.service |
在线安装 | yum install -y vsftpd |
源码安装 | rpm -ivh vsftpd-3.0.2-22.el7.x86_64.rpm |
注 | 非root用户需要添加sudo权限 |
适用于Centos6.x
作用 | 命令 |
---|---|
启动 | sudo service vsftpd start |
关闭 | sudo service vsftpd stop |
重启 | sudo service vsftpd restart |
查看运行状态 | sudo service vsftpd status |
注 | 非root用户需要添加sudo权限 |