通过ssh链接windows中navicat和ubuntu中的mysql-80070007错误

1.在ubuntu中安装ssh

sudo apt-get install openssh-server

2.ubuntu中使用ifconfig查找ip,用户名和密码是:登陆mysql的用户名和对应的密码

.通过ssh链接windows中navicat和ubuntu中的mysql-80070007错误_第1张图片

 

3.navicat 链接数据库

使用navicat 的ssh通道连接数据库回遇到权限问题
错误代码如下:

80070007: SSH Tunnel: Server does not support diffie-hellman-group1-sha1 for keyexchange

解决方案如下:
(1)进入 /etc/ssh/sshd_config 在最下面 加入下面代码

KexAlgorithms diffie-hellman-group1-sha1,[email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
Ciphers 3des-cbc,blowfish-cbc,aes128-cbc,aes128-ctr,aes256-ctr

(2)执行下面代码

ssh-keygen -A

4.重启SSH

service ssh restart

 

你可能感兴趣的:(通过ssh链接windows中navicat和ubuntu中的mysql-80070007错误)