#安装
运行命令: yum install -y vsftpd
#设置开机启动 运行命令:systemctl enable vsftpd.service #启动 运行命令:systemctl start vsftpd.service #停止 运行命令:systemctl stop vsftpd.service #查看状态 运行命令:systemctl status vsftpd.service
#打开配置文件 运行命令:vi /etc/vsftpd/vsftpd.conf #显示行号 :set number
#修改配置 12 行 anonymous_enable=NO
#修改配置 33 行 anon_mkdir_write_enable=YES
#修改配置48行 chown_uploads=YES
#修改配置72行 async_abor_enable=YES
#修改配置86行 ascii_upload_enable=YES #修改配置87行 ascii_download_enable=YES
#修改配置90行 ftpd_banner=Welcome to blah FTP service. #修改配置104行 chroot_local_user=YES
#添加下列内容到vsftpd.conf末尾 use_localtime=YES listen_port=21 idle_session_timeout=300 guest_enable=YES guest_username=vsftpd user_config_dir=/etc/vsftpd/vconf data_connection_timeout=1 virtual_use_local_privs=YES pasv_min_port=40000 pasv_max_port=40010 accept_timeout=5 connect_timeout=1 allow_writeable_chroot=YES
#创建编辑用户文件
运行命令:vi /etc/vsftpd/virtusers #第一行为用户名,第二行为密码。不能使用root作为用户名 leo 123
运行命令:db_load -T -t hash -f /etc/vsftpd/virtusers /etc/vsftpd/virtusers.db #设定PAM验证文件,并指定对虚拟用户数据库文件进行读取 运行命令:chmod 600 /etc/vsftpd/virtusers.db
# 修改前先备份 运行命令:cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd.bak 运行命令:vi /etc/pam.d/vsftpd
#先将配置文件中原有的 auth 及 account 的所有配置行均注释掉,然后添加下面这两行 auth sufficient /lib64/security/pam_userdb.so db=/etc/vsftpd/virtusers account sufficient /lib64/security/pam_userdb.so db=/etc/vsftpd/virtusers # 如果系统为32位,上面改为lib
#用户登录终端设为/bin/false(即:使之不能登录系统) 运行命令:useradd vsftpd -d /home/vsftpd -s /bin/false
运行命令:chown -R vsftpd:vsftpd /home/vsftpd
运行命令:mkdir /etc/vsftpd/vconf 运行命令:cd /etc/vsftpd/vconf #这里建立虚拟用户leo配置文件 运行命令:touch leo #编辑leo用户配置文件,内容如下,其他用户类似 运行命令:vi leo local_root=/home/vsftpd/leo/ write_enable=YES anon_world_readable_only=NO anon_upload_enable=YES anon_mkdir_write_enable=YES anon_other_write_enable=YES
#建立leo用户根目录 运行命令:mkdir -p /home/vsftpd/leo/
IPtables 的设置方式: 运行命令:vi /etc/sysconfig/iptables
#编辑iptables文件,添加如下内容,开启21端口
-A INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 40000:40010 -j ACCEPT
#firewall 的设置方式:
firewall-cmd --zone=public --add-service=ftp --permanent
firewall-cmd --zone=public --add-port=21/tcp --permanent
firewall-cmd --zone=public --add-port=40000-40010/tcp --permanent
运行命令:systemctl restart vsftpd.service
使用fileZilla测试连接
1)前提是搭建了nginx服务器
不会请打来:https://blog.csdn.net/z19799100/article/details/88687591
配置访问的映射路径
配置nginx.conf文件
运行命令:vi /usr/local/nginx/conf/nginx.conf
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location /images/ {
alias /home/vsftpd/leo;
autoindex on;
}
location / {
root html;
index index.html index.htm;
}
重启nginx服务器
运行命令:/usr/local/nginx/sbin/nginx -s reload
通过浏览器访问
ok,图片服务器搭建完成