nginx安装vsftpd遇到的问题怎么解决
时间:2023-05-18 13:38
最简洁的安装步骤 第一步:添加ftp用户 遇到的问题 连接失败 不用灰心,安装本来就不是顺风顺水的,每个人会根据自己的环境出现不同的问题。下面是我的解决方法 首先,要确定两边能 pind 通,虚拟机选择的是桥接模式,能正常 ping 通。 然后,百度 网上有很多五花八门的解决方法,主要是针对三个方面的 这里我会贴出几个网址,因为我按照网站上面的做法没有连接成功,最后是关闭了防火墙才解决的。我对这块比较薄弱,就不误人子弟了。贴出来是为了以后方便以后修改。 第一个操作是关闭匿名,开启被动模式 第二个操作是开启防火墙的21端口 第三个操作是修改selinux,开启外网可访问 临时关闭防火墙不过瘾,直接永久关闭防火墙 上传失败 在nginx 安装目录下创建了一个images文件夹,通过filezilla上传图片提示错误 解决方法如下 注意点 网络要能ping通 防火墙的问题要处理好 不能创建文件问题 以上就是nginx安装vsftpd遇到的问题怎么解决的详细内容,更多请关注Gxl网其它相关文章![root@itdragon ~]# useradd ftpuser[root@itdragon ~]# passwd ftpuserchanging password for user ftpuser.new password: bad password: it is too shortbad password: is too simpleretype new password: passwd: all authentication tokens updated successfully.[root@itdragon ~]# yum -y install vsftpd[root@itdragon ~]# ifconfig
第二步:设置ftp用户密码
第三步:安装vsftpd
第四步:查看ip地址
第五步:本地使用免费的filezilla 链接虚拟机状态: 正在等待重试...状态: 正在连接 192.168.0.11:21...错误: 20 秒后无活动,连接超时错误: 无法连接到服务器
[root@itdragon ~]# vim /etc/vsftpd/vsftpd.confanonymous_enable=nopasv_min_port=30000pasv_max_port=31000[root@itdragon ~]# service vsftpd restart[root@itdragon ~]# vim /etc/sysconfig/iptables-a input -p tcp -m multiport --dport 20,21 -m state --state new -j accept-a input -p tcp -m state --state new -m tcp --dport 21 -j accept-a input -p tcp --dport 30000:31000 -j accept[root@itdragon ~]# service iptables restart[root@itdragon ~]# getsebool -a | grep ftpallow_ftpd_anon_write --> offallow_ftpd_full_access --> offallow_ftpd_use_cifs --> offallow_ftpd_use_nfs --> offftp_home_dir --> offftpd_connect_db --> offftpd_use_fusefs --> offftpd_use_passive_mode --> offhttpd_enable_ftp_server --> offtftp_anon_write --> offtftp_use_cifs --> offtftp_use_nfs --> off[root@itdragon ~]# setsebool -p allow_ftpd_full_access on[root@itdragon ~]# setsebool -p ftp_home_dir on
[root@itdragon modprobe.d]# service iptables stopiptables: setting chains to policy accept: filter [ ok ]iptables: flushing firewall rules: [ ok ]iptables: unloading modules: [ ok ][root@itdragon modprobe.d]# chkconfig iptables off
响应:553 could not create file.错误: 严重文件传输错误
[root@itdragon html]# mkdir images[root@itdragon html]# chmod -r 777 images[root@itdragon html]# lltotal 12-rw-r--r--. 1 root root 537 nov 18 10:53 50x.htmldrwxrwxrwx. 2 root root 4096 nov 18 10:55 images-rw-r--r--. 1 root root 612 nov 18 10:53 index.html[root@itdragon html]# vim /etc/vsftpd/vsftpd.conf local_root=/var/ftp[root@itdragon html]# service vsftpd restart