Until I recently upgraded my machine from Ubuntu 20.04 to 22.04 I always could connect to SFTP folders with Nemo or Nautilus easily. I am using a connection with username and password and the password is stored locally in keyring (Seahorse), so I just enter "sftp://name@server.com/folder" into the location et voilà.
Nemo now says "Could not display "sftp://name@server.com/folder" – Error: Connection failed" and Nautilus is similar: "Oops! Something went wrong. Unhandled error message: Connection failed".
It does work when I use FTP instead of SFTP. However I prefer to use SFTP. Why is it not working anymore and how can I fix this?
ssh -vvv remote_user@remote_address
from the terminal. – user68186 Sep 21 '22 at 16:39ssh
in the background. So, I am guessing the root problem is withssh
. I assume you are using a private-public authentication key pair instead of a password. If you use a password instead of a key, then update the question with that information. – user68186 Sep 21 '22 at 18:26ssh -vvv name@server.com
orssh -vvv root@server.com
, whichever you use. Let me know if it asks for the password or 'nameor
root. If login to server.com fails, copy all the output of the
sshcommand and paste it in your question above. Then format the pasted output as
code` using the {_} icon above the edit question widow. – user68186 Sep 25 '22 at 22:14