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,curve25519-sha256@libssh.org,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
3.重啟SSH
service ssh restart