Last active
November 19, 2019 15:30
-
-
Save linuxfemale/b8f95f4b0677eaa0f30150dc95e7e502 to your computer and use it in GitHub Desktop.
Install MongoDB in Ubuntu 18.04 LTS
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
#Video Tutorial: | |
https://youtu.be/SAKUIJi5z0k | |
#!/bin/bash | |
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