Oracle RAC SSH Passwordless Setup issue - com.jcraft.jsch.JSchException: Algorithm negotiation fail
issue: SEVERE: com.jcraft.jsch.JSchException: Algorithm negotiation fail
Solution:
Explicitly add the full set of algorithms in the sshd_config and restart sshd
(as root privileged user)
1. Edit the /etc/ssh/sshd_config to contain the following line:
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
2. Restart the sshd service for changes to take effect.
# /etc/init.d/sshd restart
Screenshot
-------------