centos7 通过yum安装proftpd

1.安装epel源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
2.安装proftpd
yum install -y proftpd openssl proftpd-utils
3.启动proftpd
systemctl start proftpd.service
systemctl enable proftpd.service
4.创建ftp登录用户
a.创建ftp组:groupadd ftpgroup
b.创建ftp用户,并关联ftp目录:useradd -G ftpgroup ftptest -s /sbin/nologin -d /home/ftptest/
c.设置ftptest用户密码:passwd ftptest
5.给目录设置权限,
chmod -R 777 /home/ftptest/
6.完毕,使用ftp客户端测试proftpd是否正常上传下载文件。



作者:张龙象
链接:https://www.jianshu.com/p/328cf67d28d4
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(linux)