This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:
Reason: Ubuntu 12.04 reached end of life (EOL) on April 28, 2017 and no longer receives security patches or updates. This guide is no longer maintained.
See Instead:
This guide might still be useful as a reference, but may not work on other Ubuntu releases. If available, we strongly recommend using a guide written for the version of Ubuntu you are using. You can use the search functionality at the top of the page to find a more recent version.
MongoDB is a document database used commonly in modern web applications. This tutorial should help you setup a virtual private server to use as a dedicated MongoDB server for a production application environment.
This one's easy. Once you're done, go ahead and `ssh` in.
N.B. :: It is recommended that you configure `ssh` and `sudo` like this
The MongoDB install process is simple enough to be completed with a Bash script. Copy the following into a new file named `mongo_install.bash` in your home directory:
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 echo "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen" | tee -a /etc/apt/sources.list.d/10gen.list apt-get -y update apt-get -y install mongodb-10gen
Here's an explanation of each line in the script:
TIP: At any time, to change to your home directory, simply execute `cd`
Execute the following from your home directory:
$ sudo bash ./mongo_install.bash
If everything is successful, you should see the output contain a PID of the newly started MongoDB process:
mongodb start/running, process 2368
By default with this install method, MongoDB should start automatically when your Droplet is booted. This means that if you need to reboot your Droplet, MongoDB will start right back up.
To start learning about the running `mongod` process, run the following command:
$ ps aux | grep mongo
One line of the output should look like the following:
mongodb 569 0.4 6.4 627676 15936 ? Ssl 22:54 0:02 /usr/bin/mongod --config /etc/mongodb.confWe can see the...
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
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!
cool! this works for me after I install mongodb and i get this error after updating:
W: GPG error: http://downloads-distro.mongodb.org dist Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 9ECBEC467F0CEB10
You may be reaching this error because the GPG key, which is specified in the first line of the script, is transferred through port 11371. It is possible that this port may be blocked in your firewall setup.
I would recommend looking at your IP tables and, if it applies, unblocking port 11371. You can see your IP Table rules with the command “iptables -L” Let us know if you have further issues.
I have done this step by step… I even got the same results as you specified!!.. but whenever I say aarti@aarti-Vostro-1540:~$ mongo MongoDB shell version: 2.2.0 connecting to: test Thu Sep 13 11:38:30 Error: couldn’t connect to server 127.0.0.1:27017 src/mongo/shell/mongo.js:91 exception: connect failed aarti@aarti-Vostro-1540:~$
It may be that Mongo is not turned on.
Before using the “mongo” command, go ahead and start mongo running with “sudo service mongodb start”
Let me know if that works.
I ran sudo service mongodb start and it said it was already running. I typed mongo after that and everything was peachy. Very strange.
I believe it only creates the data directory on the first start but then exits. So, once you restart it once it works like a charm!
I followed the docs manual off mongodb.org works like a charm!
if you are getting an error trying to install a recent version on mongodb, check this out: https://jira.mongodb.org/browse/SERVER-6910
PLEASE add the fact to setup iptables!! otherwise your mongodb server will be open to the world! (default port and default auth)
apparently, when when I finish the step two, the mongo db has already created and ready to go. No step 3 is needed. Also looks like I need to replace user name and password immediately after creating the mongo db.