Reputation: 143
I have Guacamole server running on Ubuntu. Created connection for Digital Ocean droplet using SSH with password and works fine.
I have been trying to connect to Oracle cloud linux instances using Private Key. But when trying to connect it fails saying login failed. No idea what is going wrong.
Need some help to configure Guacamole connection to connect to Oracle cloud linux instance with private key. The private key provided by oracle while creation of instance.
Thanks.
Upvotes: 0
Views: 721
Reputation: 1
3 things need to aware:
/etc/ssh/sshd_config
file on the target server and add these two lines to the config. Then reboot sshd by sudo systemctl restart sshdHostKeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
Upvotes: 0