您的位置:首页 > 技术中心 > 运维 >

nginx安装vsftpd遇到的问题怎么解决

时间:2023-05-18 13:38

最简洁的安装步骤

[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用户
第二步:设置ftp用户密码
第三步:安装vsftpd
第四步:查看ip地址
第五步:本地使用免费的filezilla 链接虚拟机

遇到的问题

连接失败

状态: 正在等待重试...状态: 正在连接 192.168.0.11:21...错误: 20 秒后无活动,连接超时错误: 无法连接到服务器

不用灰心,安装本来就不是顺风顺水的,每个人会根据自己的环境出现不同的问题。下面是我的解决方法

首先,要确定两边能 pind 通,虚拟机选择的是桥接模式,能正常 ping 通。

然后,百度

网上有很多五花八门的解决方法,主要是针对三个方面的

这里我会贴出几个网址,因为我按照网站上面的做法没有连接成功,最后是关闭了防火墙才解决的。我对这块比较薄弱,就不误人子弟了。贴出来是为了以后方便以后修改。

第一个操作是关闭匿名,开启被动模式

第二个操作是开启防火墙的21端口

第三个操作是修改selinux,开启外网可访问

[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

上传失败

在nginx 安装目录下创建了一个images文件夹,通过filezilla上传图片提示错误

响应: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

注意点

网络要能ping通

防火墙的问题要处理好

不能创建文件问题

以上就是nginx安装vsftpd遇到的问题怎么解决的详细内容,更多请关注Gxl网其它相关文章!

热门排行

今日推荐

热门手游