centos7 搭建FTP,配置匿名登录,并且nginx代理ftp

本文详细介绍了如何在CentOS7上搭建FTP服务器,配置匿名用户登录,并通过Nginx进行代理访问。步骤包括安装vsftpd,创建FTP目录,设置权限,编辑vsftpd配置文件,启用匿名访问和写入权限,然后通过winScp测试连接。最后,指导如何安装Nginx并配置代理,监听9090端口,允许跨域访问FTP资源。
摘要由CSDN通过智能技术生成

1、首先使用yum安装vsftpd;

2、新建ftp目录,mkdir  /home/ROOT

3、设置目录权限:chmod 755 /home/ROOT(匿名访问权限,很重要)

4、添加账号:useradd -d /home/ROOT -s /sbin/nologin ROOT

5、修改密码:passwd ROOT

6、修改配置/etc/vsftpd/vsftpd.conf,配置匿名账号访问:

# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the ano

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值