Connect to FTP server

I am creating FTP by android(from default file manager app) and am trying to connect it on my ubuntu. In file manager I tried to do

connect to server

but when i click connect, it is showing this error.

Error resolving "address..": name or service not known

I am on the same wifi network on both android and ubuntu. how to solve this?

5

1 Answer

Given the output error you presented, it seems like you were unable to connect your remote FTP server from some reason.

For more detailed responses I would suggest also to try connecting using the terminal, as you can actually see the process of the client request and response from the server. This will also help understand if the problem is the usage of the file manager or the connection itself.

Simply open the terminal and type: ftp your_server_IP_address , or ftp your_server_domain_name . Also add user@ before the ip or domain if it is user protected.

If you get an error about being unable to resolve the target name or IP, you might have a network problem or the connection is being blocked from some reason.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like