Skip to content

Instantly share code, notes, and snippets.

@hpherzog
Last active December 26, 2015 02:49
Show Gist options
  • Save hpherzog/7080864 to your computer and use it in GitHub Desktop.
Save hpherzog/7080864 to your computer and use it in GitHub Desktop.
Install mongodb on debian.
#!/bin/sh
(cat <<-SRC
# mongodb
# http://docs.mongodb.org/manual/tutorial/install-mongodb-on-debian
deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen
SRC
) > /etc/apt/sources.list.d/mongodb.list
cd /tmp
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
apt-get update
apt-get install mongodb-10gen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment