Created
September 11, 2013 21:52
-
-
Save xhanin/6530274 to your computer and use it in GitHub Desktop.
A script to install MongoDB on Debian, based on instructions provided here:
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-debian/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
sudo apt-get update | |
sudo apt-get install -y mongodb-10gen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment