Report this

What is the reason for this report?

How to connect two droplets running the same Node.js app to a single MongoDB droplet

Posted on October 18, 2017
Josh

By Josh

I want to be able to have 2 node.js droplets behind a load balancer and have them both connect to the same MongoDB droplet/database. I want to have it so users will not notice if they are on droplet A or droplet B. How would I set this up/ put it in node.js code? I have this as my mongodb connect:

mongoose.connect(mongodb://localhost/asset-management-v1);

I know I would need to change localhost to the droplet IP but other than that is there any setup I need to do or custom code?



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.

Hello,

Yes indeed, you would have to change the localhost part in your connection string to the IP address of your MongoDB droplet.

Also, you need to make sure that the two node droplets can communicate with the MongoDB instance by whitelisting your droplet IPs via the firewall on the MongoDB droplet.

Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.