FileZillaを使用してサーバーに接続すると、このエラーが発生します

FileZillaを使用してサーバーに接続すると、このエラーが発生します
Status: Resolving address of ftp.ewemwa.org
Status: Connecting to 192.185.115.188:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Command:    USER ewemwa.org
Response:   331 User ewemwa.org OK. Password required
Command:    PASS *************
Response:   530 Login authentication failed
Error:  Critical error: Could not connect to server
Status: Disconnected from server
Status: Resolving address of ftp.ewemwa.org
Status: Connecting to 192.185.115.188:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Retrieving directory listing...
Command:    PWD
Response:   257 "/" is your current location
Command:    TYPE I
Response:   200 TYPE is now 8-bit binary
Command:    PASV
Response:   227 Entering Passive Mode (192,185,115,188,132,70)
Command:    MLSD
Response:   150 Accepted data connection
Response:   421 chdir: Permission denied
Error:  Failed to retrieve directory listing
Error:  GnuTLS error -110 in gnutls_record_recv: The TLS connection was non-properly terminated.
Status: Server did not properly shut down TLS connection
Error:  Could not read from socket: ECONNABORTED - Connection aborted
Error:  Disconnected from server
Status: Resolving address of ftp.ewemwa.org
Status: Connecting to 192.185.115.188:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Retrieving directory listing...
Command:    PWD
Response:   257 "/" is your current location
Command:    TYPE I
Response:   200 TYPE is now 8-bit binary
Command:    PASV
Response:   227 Entering Passive Mode (192,185,115,188,195,68)
Command:    MLSD
Response:   150 Accepted data connection
Response:   421 chdir: Permission denied
Error:  Failed to retrieve directory listing
Error:  GnuTLS error -110: The TLS connection was non-properly terminated.
Status: Server did not properly shut down TLS connection
Status: Disconnected from server: ECONNABORTED - Connection aborted
Status: Disconnected from server
Status: Resolving address of ftp.ewemwa.org
Status: Connecting to 192.185.115.188:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Retrieving directory listing of "/"...
Command:    CWD /
Response:   550 Can't change directory to /: Permission denied
Error:  Failed to retrieve directory listing
Status: Disconnected from server
Status: Resolving address of ftp.ewemwa.org
Status: Connecting to 192.185.115.188:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Retrieving directory listing of "/"...
Command:    CWD /
Response:   550 Can't change directory to /: Permission denied
Command:    PWD
Response:   257 "/" is your current location
Command:    TYPE I
Response:   200 TYPE is now 8-bit binary
Command:    PASV
Response:   227 Entering Passive Mode (192,185,115,188,152,114)
Command:    MLSD
Response:   150 Accepted data connection
Response:   421 chdir: Permission denied
Error:  Failed to retrieve directory listing
Error:  GnuTLS error -110: The TLS connection was non-properly terminated.
Status: Server did not properly shut down TLS connection
Status: Disconnected from server: ECONNABORTED - Connection aborted

答え1

サーバーは/ディレクトリへのアクセスを許可していません:

Response:   550 Can't change directory to /: Permission denied

これには 2 つの原因が考えられます。

  • ホスト名の IP から判断すると、FTP サービスはホスティング プロバイダーによって提供されているようです。FTP サービスの使用方法に関する指示に従いましたか? または/users/username/web何かのディレクトリにアクセスする必要があるかもしれません。

  • あなたが具体的にそう言ったのであなたのserver: その場合、ユーザー アカウントにはアクセスするための適切なファイルシステム権限があると考えられます/。その場合、これはおそらく FTP サービスの構成エラーです。FTP サービス ログにはより詳しい情報が記載されているはずですが、サーバーが使用しているソフトウェアを知らなければこの問題に対処することは不可能です。

関連情報