Skip to content

Instantly share code, notes, and snippets.

@hpherzog
Created September 13, 2015 11:34
Show Gist options
  • Save hpherzog/edec024375773286c7e9 to your computer and use it in GitHub Desktop.
Save hpherzog/edec024375773286c7e9 to your computer and use it in GitHub Desktop.
Install mongodb version 3.0.x on debian jessie
#!/bin/sh
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list
apt-get update
apt-get install -y mongodb-org
@duolaaa
Copy link

duolaaa commented Oct 12, 2016

it work on debian 8.2 jessie, 64 bit VM, thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment