无法从我的ubuntu EC2计算机连接到AWS DocumentDB

时间:2019-03-11 21:42:15

标签: amazon-web-services ubuntu aws-documentdb

我无法从Amazon EC2 ubuntu计算机连接到Amazon DocumentDB吗?我已经检查了Amazon DocumentDB的安全性,目前已将其分配给具有“所有流量”的默认值。

尽管我收到下面包含的错误消息,但我已经在AWS实例页面中尝试了以下命令。

我遵循了这个AWS指南https://docs.aws.amazon.com/documentdb/latest/developerguide/getting-started.connect.html

EC2 ubuntu计算机上的Mongo shell命令

mongo --ssl --host mydatabasename.23scnncsd3.eu-west-1.docdb.amazonaws.com:27017 --sslCAFile rds-combined-ca-bundle.pem --username webuser --password mypassword

我从ubuntu命令提示符下收到的错误消息如下

错误消息

MongoDB shell version v3.6.11
connecting to: mongodb://mydatabasename.23scnncsd3.eu-west-1.docdb.amazonaws.com:27017/?gssapiServiceName=mongodb
2019-03-11T21:39:37.587+0000 W NETWOK  [thread1] Failed to connect to 172.31.45.184:27017 after 5000ms milliseconds, giving up.
2019-03-11T21:39:37.595+0000 E QUERY    [thread1] Error: couldn't connect to server mydatabasename.23scnncsd3.eu-west-1.docdb.amazonaws.com:27017, connection attempt failed :
connect@src/mongo/shell/mongo.js:263:13
@(connect):1:6
exception: connect failed

我做错什么了吗?任何帮助表示赞赏!

非常感谢,

更新

aws screen shot

1 个答案:

答案 0 :(得分:1)

Amazon DocumentDB在VPC内部署群集,这些群集是其他VPC和Internet的强大网络边界。连接到群集时,请确保客户端计算机与群集位于同一区域,并且位于同一VPC。

或者,如果您的开发环境位于不同的Amazon VPC中,则您还可以使用VPC Peering并从相同区域或不同区域中的另一个Amazon VPC连接到Amazon DocumentDB集群。

有关故障排除的更多信息:https://docs.aws.amazon.com/documentdb/latest/developerguide/troubleshooting.html

从VPC外部连接到Amazon DocumentDB集群:https://docs.aws.amazon.com/documentdb/latest/developerguide/connect-from-outside-a-vpc.html