I have created one EC2 instance of Windows Server 2012 R2.
I have installed MongoDB on that server.
I setup an inbound rule to allow port 27017 to connect to MongoDb from my local machine.
Now I am trying to connect using MongoDB GUI tool (MongoBooster) and its giving following error.
{
"message" : "connect ETIMEDOUT X.X.X.X:27017",
"name" : "MongoError",
"stack" : "Error: connect ETIMEDOUT X.X.X.X:2701" +
"at Object.exports._errnoException (util.js:949:11" +
"at exports._exceptionWithHostPort (util.js:972:20" +
"at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1080:14)"
}
How can I resolve this issue?