阿里云centos7.4部署ftp + nginx

详细参考ftp部署 https://www.aliyun.com/jiaocheng/125929.html

转基于阿里云ftp + nginx + mysql https://blog.csdn.net/a631373000/article/details/53229799

遇到的问题

1、21端口未开放

2、报错  500 OOPS: vsftpd: refusing to run with writable root inside chroot()

  解决方法:
  #vi /etc/vsftpd.conf (或者是在/etc/vsftpd/vsftpd.conf,总之知道自己服务器的配置文件)
  添加 allow_writeable_chroot=YES
  保存退出
  service vsftpd restart 重启vsftp服务,即可正常登录
3、7.X版本的centos不在使用service vsftpd restart方式重启ftp
  需要使用systemctl restart vsftpd.service
原文地址:https://www.cnblogs.com/orxx/p/9603238.html