Navicat — 使用 SSH 通道

Posted 拨云见日

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Navicat — 使用 SSH 通道相关的知识,希望对你有一定的参考价值。

使用 Navicat for MySQL 通过跳板机登录 Mysql 时(使用 SSH 通道)
报错如下:

  • SSH : Expected key exchange group packet from Server
  • 一直处于正在连接状态,无响应

连接属性配置:

配置确认没有错误,实际上需要在跳板机上的 sshd_config 文件中加入一些配置,并重启 sshd 服务,即可成功

# 数据库服务器,授权 root@\'172.16.1.%\' 用户对于所有库下的所有表有所有权限,密码是 123 
[root@dbtest01 ~]# mysql -p
Enter password:
mysql> grant all on *.* to root@\'172.16.1.%\' identified by \'123\';


# 跳板机服务器,使用 SSH 通道 需要在 sshd_config 中加入以下配置
[root@dbtest02 ~]# vim /etc/ssh/sshd_config
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1
# 重启 sshd
[root@dbtest02 ~]# systemctl restart sshd

以上是关于Navicat — 使用 SSH 通道的主要内容,如果未能解决你的问题,请参考以下文章

Navicat远程连接云服务器数据库的方法(含报错解决方法)

Navicat使用ssh连接数据库

Navicat http 通道增加验证

nginx+php+navicat http通道连接

navicat使用ssh登录mysql报错:expected key exchange group packet from server

Navicat远程连接MySQL服务器