ssh登陆故障:expected key exchange group packet form server

         expected key exchange group packet form server 通常会出现在Navicat连接数据库或者putty/xshell/WinSCP/SecureCRT等远程终端软件SSH到linux服务器是报错。(直接ssh命令主机是没有问题的,通过终端就会产生这类error)

         前提环境:网络ping、端口、服务、权限和账号密码都正常的。
情况一 navcat链接不上linux服务器上的mysql

1.最直接的办法版本问题:更新Navicat到最新版本即可解决

2.1.先进入linux连接数据库并输入密码

mysql -uroot -h地址 -p

2.2 授权

grant all privileges on *.* to 'root'@'%' identified by '密码' with grant option;
flush privileges;

3.但是添加了权限之后,还是连接不上数据库。必须给服务器的安全组设置端口放行规则

步骤:登陆管理台-->云数据库rds-->管理-->数据安全性 添加

情况二:putty/xshell/WinSCP/SecureCRT等远程终端软件SSH到linux服务器是报错

 journalctl --unit sshd --no-pager    #看日志

在/etc/ssh/sshd_config中添加

KexAlgorithms [email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1

重启sshd

你可能感兴趣的:(小软件应用)