问题描述:
在安装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
问题解决。
在安装Greenplum过程中遇到SSH连接错误Incompatible ssh peer (no acceptable kex algorithm)。原因是SSH 6.7及以上版本禁用了不安全的算法。通过在sshd_config中配置特定的KexAlgorithms并重启SSH服务解决了此问题。
12万+

被折叠的 条评论
为什么被折叠?



