centos安装ftp服务器

前端之家收集整理的这篇文章主要介绍了centos安装ftp服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1安装

yum -y install vsftpd

2启动

service vsftpd start

3配置

vi /etc/vsftpd/vsftpd.conf



把这个改为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

原文链接:https://www.f2er.com/centos/380702.html

猜你在找的CentOS相关文章