You're viewing old version number 2. - Current version
MongoDB
On Oct 6, 2014, I installed MongoDB on my Digital Ocean droplet.
https://www.digitalocean.com/community/tutorials/how-to-install-mongodb-on-ubuntu-12-04
Created and executed a bash script with the following:
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo "deb <a href="http://downloads-distro.mongodb.org/repo/ubuntu-upstart">http://downloads-distro.mongodb.org/repo/ubuntu-upstart</a> dist 10gen" | tee -a /etc/apt/sources.list.d/10gen.list
apt-get -y update
apt-get -y install mongodb-10gen
This install executed quickly and easily, as most fine things do.
It installed version 2.4.11.
The latest version available is 2.6.4, which was released on Aug 11, 2014.
Check for running process:
$ ps aux | grep mongo
mongodb    569  0.4  6.4 627676 15936 ?        Ssl  22:54   0:02 /usr/bin/mongod --config /etc/mongodb.conf
From JR's : articles
107 words - 939 chars 
created on  
updated on  
 - #
 source
 - versions
 
Related articles
MongoDB  - Oct 06, 2014