I am trying to connect to my server using
ssh [email protected] -vv
I get
debug1: read_passphrase: can't open /dev/tty: No such device or address
error or just
Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
when I do not use the -vv
option.
/dev/tty
file does exist. I am logged in as root, so I have access to it. tty
command returns
/dev/console
I am remotely connected (using Putty) to the server, and I am trying to connect to that from another server. It is not a cron job. How can I solve the problem?
What does
ls -la /dev/tty
show? Is it both world-readable and world-writeable?That is what you should see. If not, that's your problem.
I had this
read_passphrase: can't open /dev/tty
error when my private key was wrongly formatted - instead of many lines, it was passed as a one-liner, and you might have any other format issue like a forgotten "-" at the start or end, or something wrong at the end of the lines, like a missing newline format or an additional letter at the end of a line.See Dockerfile: clone repo with passwordless private key. Errors: “authentication agent” or “read_passphrase: can't open /dev/tty” for more details, with the main idea from Add private key to ssh-agent in docker file, which again had the idea from Gitlab CI/Docker: ssh-add keeps asking for passphrase.