Created
August 15, 2017 16:22
-
-
Save whalehulk/28445c3011bb117f788d7b09ff45e89a to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" > /etc/apt/sources.list.d/mongodb-org-3.4.list | |
echo "deb http://repo.pritunl.com/stable/apt xenial main" > /etc/apt/sources.list.d/pritunl.list | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 0C49F3730359A14518585931BC711F9BA15703C6 | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 7568D9BB55FF9E5287D586017AE645C0CF8E292A | |
apt-get --assume-yes update | |
apt-get --assume-yes upgrade | |
apt-get --assume-yes install pritunl mongodb-org | |
systemctl start pritunl mongod | |
systemctl enable pritunl mongod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment