當前位置:首頁 » 文件傳輸 » 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命令,見下圖,轉到下面的步驟。