web-dev-qa-db-ja.com

中止されたftp接続を修正する方法

かなり大きなファイル(1.7 GB)をftpサーバーにアップロードしようとしています。問題は1つだけです。44%に達するたびに、接続がシャットダウンし、再接続してから、0%から再開します。

誰かがこの問題を解決する方法を知っていますか?それは私を本当に幸せにするでしょう。

エラーは次のとおりです。

Status: Resolving address of '''''''''''''''
Status: Connecting to '''.'''.''.''':''...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Starting upload of ''''''''''''''''''
Status: Connection closed by server
Command:    CWD '''''''''
Response:   250 CWD command successful
Command:    PWD
Response:   257 "'''''''''" is the current directory
Command:    TYPE I
Response:   200 Type set to I
Command:    PASV
Response:   227 Entering Passive Mode (''',''','',''',''',''').
Command:    STOR ''''''''''''
Response:   150 Opening BINARY mode data connection for ''''''''''''
Error:  Transfer connection interrupted: ECONNABORTED - Connection aborted
Error:  Connection timed out after 20 seconds of inactivity
Error:  File transfer failed after transferring 1.020.526.592 bytes in 1313 seconds
Status: Disconnected from server

'' 'は機密情報であり、実際にはそのようには見えません。

注:私自身、ftpサーバーなどの経験はありません。ウェブホストのftpサーバーを使用しています。それが重要かどうかはわかりませんが、私はそれを言った方がいいです。

1
Rien Klapwijk
  • あなたのウェブホストに連絡して、彼らの側にあるように見える問題を修正するために彼らの助けを得てください。
  • ファイルを小さな部分に分割し、再アセンブルします。 split などのLinuxコマンドと、 HJ-Split などのマルチプラットフォームツールがあります。
  • PuTTY または WinSCP を使用してSSHなどの別の転送方法を使用します。
1
DrMoishe Pippik