Skip to content

Instantly share code, notes, and snippets.

@devopslinuxadmin
Last active October 1, 2019 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devopslinuxadmin/f26b2d57ab6e73bda63c87028d675540 to your computer and use it in GitHub Desktop.
Save devopslinuxadmin/f26b2d57ab6e73bda63c87028d675540 to your computer and use it in GitHub Desktop.
Install MongoDB
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list
sudo apt update
sudo apt install mongodb-org
sudo systemctl enable mongod
sudo systemctl start mongod
sudo systemctl restart mongod
mongod --version
mongo
> rs.initiate()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment