Answers for "permission denied (publickey) ssh ubuntu"

-1

ssh error permission denied (publickey)

sudo service ssh restart
Posted by: Guest on October-23-2020
3

ssh error permission denied (publickey)

sudo nano /etc/ssh/sshd_config
PermitRootLogin prohibit-password to PermitRootLogin yes 
PasswordAuthentication no to PasswordAuthentication yes
Posted by: Guest on April-14-2021
-1

permission denied (publickey) ssh ubuntu

sudo nano /etc/ssh/sshd_config
PermitRootLogin prohibit-password to PermitRootLogin yes 
PasswordAuthentication no to PasswordAuthentication yes
Posted by: Guest on June-06-2021
0

permission denied (publickey password)

cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Key copied"'
Posted by: Guest on November-25-2020

Code answers related to "permission denied (publickey) ssh ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language