FAIL : SSHException: Incompatible ssh peer (no acceptable kex algorithm)

问题描述:
在安装greenplum,执行gpssh-exkeys过程中抛出异常

 Incompatible ssh peer (no acceptable kex algorithm)

原因:
由于ssh 6.7以上屏蔽不安全算法

解决:
在/etc/ssh/sshd_config最后加上

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

重启ssh
service sshd restart
问题解决。

你可能感兴趣的:(linux系统运维)