centos安装ftp服务器

1安装

yum -y install vsftpd

2启动

service vsftpd start

3配置

vi /etc/vsftpd/vsftpd.conf

centos安装ftp服务器_第1张图片


把这个改为NO 默认是YES (改为NO 就是禁止匿名用户登录)


chroot_local_user=YES把前面的井号去掉

4重启服务

service vsftpd restart

5创建ftp用户

useradd -s /sbin/nologin -d /work ftper

(ftper这个用户只能连接ftp无法登录系统,默认目录是在/work 下面)


6给ftper这个用户设置密码

passwd ftper


7关闭selinux

vi /etc/selinux/config

把SELINUX=enforcing改为SELINUX=disabled

8重启服务

service vsftpd restart

9默认开机启用

chkconfig vsftpd on

10关闭防火墙

service iptables stop

chkconfig iptables off




你可能感兴趣的:(centos安装ftp服务器)