当我尝试从Bastion服务器创建SSH连接时,我收到“Permission DenIEd(publickey)”.信息.
ssh -L 10.0.0.10:22:10.0.1.10:22 user@10.0.1.10
这是失败的调试输出:
> deBUG1: Authentications that can continue: publickeydeBUG1: Next authentication method: publickeydeBUG1: Trying private key: /root/.ssh/IDentitydeBUG1: Trying private key: /root/.ssh/ID_rsadeBUG1: Trying private key: /root/.ssh/ID_dsadeBUG1: No more authentication methods to try.Permission denIEd (publickey).
数据库服务器上已有正确的公钥,因此我认为我需要在某处输入私有RSA密钥.我在哪里输入私钥?还有在3306上创建隧道所需的任何sshd配置更改吗?
解决方法clIEnt <-----> Bastion Server <-----> Database Server (10.0.1.10) (10.0.0.10)
所以,试试这个:
$ssh -C -N -L 3306:10.0.0.10:3306 user@10.0.1.10
然后您可以通过执行以下命令连接到数据库服务器:
$MysqL -u <user> -p -h localhost
Where do I enter the private key?
默认值为〜/ .ssh /,但您可以放在任何您想要的位置并使用-i选项指定.
Also are there any sshd config changes required to create the tunnel
on 3306?
确保AllowTcpForwarding行已注释掉或设置为yes.
总结以上是内存溢出为你收集整理的linux – 将SSH堡垒服务器连接到数据库服务器全部内容,希望文章能够帮你解决linux – 将SSH堡垒服务器连接到数据库服务器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)