CentOS 7 安装配置FTP

前端之家收集整理的这篇文章主要介绍了CentOS 7 安装配置FTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装vsftpd

yum install -y vsftpd

编辑ftp配置文件

vi /etc/vsftpd/vsftpd.conf

anonymous_enable=NO
#anonymous_enable=YES

chroot_local_user=YES
#去掉前面的注释

#chroot_list_enable=YES
#chroot_list_file=/etc/vsftpd/chroot_list
#不受限制的用户列表,用不用都OK

allow_writeable_chroot=YES
#加上这行解决无法登陆的问题

启动/重新启动ftp

service vsftpd start service vsftpd restart

设置开机启动ftp

chkconfig vsftpd on

建立ftp账户

useradd -d /path/you/want -s /sbin/nologin codeeer

设置密码

passwd codeeer

设置账户权限

chown -R codeeer /path/you/want
原文链接:https://www.f2er.com/centos/381635.html

猜你在找的CentOS相关文章