不想把MySQL端口暴露在公网?在naviCat里可以通过ssh连接mysql。
连接设置:
设置完毕后,连接测试时提示:
expected key exchange group packet from server
修改sshd配置即可解决。解决方法:
在/etc/ssh/sshd_config最后一行加上:
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1
重启sshd后即可。