Home » Categories » Multiple Categories |
How To Install MongoDB on Ubuntu 12.04 |
Article Number: 154 | Rating: Unrated | Last Updated: Mon, Dec 23, 2013 at 10:23 PM
|
Install MongoDB on Ubuntu 12.04 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.
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
Run the Install Script Execute the following from your home directory: $ sudo bash ./mongo_install.bash
mongodb start/running, process 2368 Check It Out By default with this install method,
MongoDB should start automatically when your system is booted. This means that
if you need to reboot your system, MongoDB will start right back up. $ ps aux | grep mongo
mongodb 5690.4 6.4 627676 15936 ? Ssl22:54 0:02 /usr/bin/mongod --config /etc/mongodb.conf
|
Attachments
![]()
There are no attachments for this article.
|
How To Create Nagios Plugins With Python On Ubuntu 12.10
Viewed 6748 times since Sat, Jan 4, 2014
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu
Viewed 6697 times since Thu, Jan 2, 2014
How to Setup Additional Entropy for Cloud Servers Using Haveged
Viewed 2578 times since Sat, Jan 4, 2014
How To Create Nagios Plugins With Bash On Ubuntu 12.10
Viewed 2183 times since Sat, Jan 4, 2014
How To Install Nagios On Ubuntu 12.10
Viewed 2683 times since Sat, Jan 4, 2014
How To Install Rails, Apache, and MySQL on Ubuntu with Passenger
Viewed 3251 times since Mon, Dec 23, 2013
How To Set Up Apache Virtual Hosts on Ubuntu 12.04 LTS
Viewed 3564 times since Mon, Dec 23, 2013
How To Create Nagios Plugins With Perl On Ubuntu 12.10
Viewed 2346 times since Sat, Jan 4, 2014
How To Launch Your Site on a New Ubuntu 12.04 Server with LAMP, SFTP, and DNS
Viewed 2634 times since Thu, Dec 26, 2013
How To Scale Django: Finding the Bottleneck
Viewed 2531 times since Fri, Jan 3, 2014
|