Question

Connection Nodejs to Mongodb in Droplet

I created two droplets, deployed my Nodejs backed in first one, installed Mongodb in the second one. I also secured the MongoDB with database admin user, and a SSH key login to the MongoDB Droplet. Now I am stuck, I don’t know how to connect my Nodejs app to MongoDB Database. How will I connect to the database? Using a Connection String? or by attaching and sending an object with all port values, ssh key etc? I am not sure how to get it done, any help will be highly appreciated. Thank you.


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Andrew SB
DigitalOcean Employee
DigitalOcean Employee badge
February 12, 2018
Accepted Answer

By default, the MongoDB listens on the local interface. In order to allow your Node application to access the MongoDB instance, modify the value of bindIp in /etc/mongod.conf If you do so, you are highly advised to first review the security checklist from the MongoDB documentation.

The relevant section of the config file should look like:

# [ ... ]
net:
  port: 27017
  bindIp: 127.0.0.1,ip_of_mongo_droplet
# [ ... ]

In addition to enabling one of the forms of authentication supported by MongoDB, you should set up a firewall to limit access to the MongoDB instance. You can do this with a DigitalOcean firewall or UFW which comes pre-installed on Ubuntu Droplets.

If you go with UFW, this command will allow access from the Node app’s IP address and nowhere else:

  1. sudo ufw allow from node_ip_address to any port 27017

Now that MongoDB is listening for connections from the outside and has been secured with a firewall, you can connect to it from Node using the MongoDB Node.JS driver

const MongoClient = require('mongodb').MongoClient;
const assert = require('assert');

// Connection URL
const url = 'mongodb://mongo_ip_address:27017';

// Database Name
const dbName = 'myproject';

// Use connect method to connect to the server
MongoClient.connect(url, function(err, client) {
  assert.equal(null, err);
  console.log("Connected successfully to server");

  const db = client.db(dbName);

  client.close();
});

In order to make your app more portable, consider making the value of url in the above example configurable using an environment variable.

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

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.