我有一个AWS DocumentDB设置,我可以通过我的跳转框很好地连接到:
mongo --ssl --host aws-host:27017 --sslCAFile rds-combined-ca-bundle.pem --username my_user --password <insertYourPassword>
我希望能够通过 localhost 连接到它进行一些测试。我无法直接连接,所以我试图从我的跳跃中打开一条隧道:
ssh -i ~/.ssh/my-key user@my_jump -L 27017:aws-host:27017 -N
之后我尝试了基本的 MongoDB 连接命令:
mongo --ssl --host localhost:27017 --sslCAFile rds-combined-ca-bundle.pem --username my_user --password <insertYourPassword>
我得到一个我理解的错误:
服务器证书与主机名不匹配。主机名:localhost 与 SAN 不匹配
我尝试再次export http_proxy
使用http://my_jump:27017
和使用上面的命令,但没有成功。
有关如何连接的任何建议或帮助?