当前位置:首页 » 文件传输 » ftpnotconnected
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

ftpnotconnected

发布时间: 2022-07-16 15:30:36

A. 国外电脑无法连接国内的FTP站点。

学校的防火墙没有将21和20端口没有打开。

B. shell ftp not connected

您问的是shell ftp not connected翻译吧。
译为:shell ftp未连接。写的一个shell中,一直是可以正常连接ftp的,近期ftp服务器修改了密码,所以shell里的密码也要跟着修改,只要在密码上面用单引号引住就可以正常连接了。

C. 在DOS下我输入ftp>dir为什么显示not connected

在ftp>状态下。输入open后,且连接到ftp站点后,再dir一下!!
或在进ftp>之前:ftp 站点IP,再dir试试!

D. 在linux上单独用shell脚本可以完成文件上传,可是使用java来调用这个shell脚本却提示无法连接

不要用sh来运行,用bash。sh 应该不支持here doc。

Process process = Runtime.getRuntime().exec(new String[] {
"sh", "/ftpfile"});

==>

Process process = Runtime.getRuntime().exec(new String[] {
"bash", "/ftpfile"});

E. 为什么不能访问ftp服务器

login field?
还是别的错误 unknown host?
或者那台服务器屏蔽ftp了

F. 急!!ftp登录错误,提示 530 not logged in,连接失败 ,,是怎么回事啊 求解!!

因为该帐号限制只有部分许可的ip可以登陆,同样你必须与管理者联系,请他手工添加你的ip。

G. Ftp 错误代码 550,如何解决

FTP连接过程中,提示530
Login
authentication
failed错误是因为填写错了ftp密码。
解决方法:
登陆客户中心,客户中心
>
会员中心
>
产品与服务(不同的主机提供商可能不同仅供参考)进入购买的那个套餐,下面有个登陆详情然后输入新密码就行了,这样ftp就可以用了。
FTP登录常见提示错误:
1.connected.
waiting
for
response.
220
serv-u
ftp
server
v4.0
for
winsock
ready...
user
anonymous
530
sorry,
no
anonymous
access
allowed.
quit
不允许匿名登录
2.connected.
waiting
for
response.
220
serv-u
ftp
server
v4.0
for
winsock
ready...
user
test
331
user
name
okay,
need
password.
pass
xxxxxx
530
not
logged
in.
quit
一般是密码输入错误时出现的信息。
3.connecting
to
xxx.xxx.xxx.xxx,
port
21
error:
connection
timed
out
这个表明对方未开机,也可能是对方不在能访问的范围内。可能小区的服务器检修中。
4.connecting
to
xxx.xxx.xxx.xxx
port
21
error:
connection
refused
这个一般表明对方已开机,但未开启ftp服务(没有开serv-u),也可能为对方不提供在这个端口上的服务
5.connecting
to
xxx.xxx.xxx.xxx,
port
21
connected.
waiting
for
response.
disconnected
from
server.
connection
attempt
failed.
waiting
for
retry...
出现极有可能是重试时间定的太短被服务器封了。
6.connecting
to
xxx.xxx.xxx.xxx,
port
21
connected.
waiting
for
response.
user
xxx
331
user
name
okay,
need
password
pass
xxxxxx
530
not
logged
in,
unauthorized
ip
address.
quit
没有登记ip,或者登记的ip和现在的不一样,重新登记即可。
7.227
entering
passive
mode
(218,3,87,224,10,232)
retr
hfdx-tsoaf.sub.rar
550
sorry,
insufficient
credit
for
download
-
upload
first.
传输已失败.传输队列已完成但流量不够了,重新购买。

H. linux ftp服务器拒绝连接

出现此问题的原因为:设置问题造成的。

解决的方法和详细的操作步骤如下:

1、第一步,连接到相应的linux主机,进入linux命令行状态,然后等待输入shell命令,见下图,转到下面的步骤。