Hi there.
I want to connect to mongodb on droplet from another droplet. I have disabled firewall to get it out of equation.
I have set “bindIp” to the private ip of the droplet in mongodb.conf.
Now from another droplet, which also has private networking enabled I do mongo --host PRIVATE-IP
but doen’t connect, I am getting this is return:
connecting to: PRIVATE_IP:27017/test 2017-12-26T04:41:53.102-0500 Error: couldn’t connect to server PRIVATE_IP:27017 (PRIVATE_IP), connection attempt failed at src/mongo/shell/mongo.js:148 exception: connect failed
Can anyone please advice what I am doing wrong?
Thanks.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi @yazla,
You can edit /etc/mongod.conf configuration file and make bind IP changed as below
Once changes are made restart the mongod service.
There is a recent Community question link below that was answered on how to access MongoDB from a remote machine you can feel free to check this out.
https://www.digitalocean.com/community/questions/how-can-i-access-mongodb-from-remote-system
I hope this helps!
Regards, Rajkishore