去发现生活中的美好,记录生活中的点点滴滴

centOS安装vsftpd

linux admin 1170℃

1、首先查看下是否安装了vsftpd:

  1. rpm -qa|grep vsftpd 或者
  2. chkconfig --list

2、如果没有安装,则执行

  1. yum -y install vsftpd

3、创建日志文件:

  1. touch /var/log/vsftpd.log

4、开机启动

  1. systemctl enable vsftpd.service

5、结束进程

  1. ps auxf | grep vsftpd

6、安装vsftpd服务

  1. yum -y install vsftpd.service

7、重启vsftpd

  1. systemctl restart vsftpd

8、卸载vsftpd

  1. yumremove vsftpd

转载请注明:永盟博客 » centOS安装vsftpd

喜欢 (1)

Warning: count(): Parameter must be an array or an object that implements Countable in E:\www\blog\wp-includes\class-wp-comment-query.php on line 405