Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install mongodb ubuntu 20.04

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
Comment

install mongo ubuntu 20.04

sudo systemctl status mongod
Comment

install mongo ubuntu 20.04

sudo systemctl enable mongod
Comment

how to install mongodb in ubuntu 20.04 lts fossa

sudo apt update
# Import the public key used by the package management system
# The operation should respond with an OK.
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
# Create a list file for MOngoDB
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list
# Reload localpackage database
sudo apt update
#Install MongoDB packages
sudo apt install -y mongodb-org
Comment

mongodb install ubuntu 20.04

FOR WSL2

wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
sudo apt-get install gnupg
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] 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-get update
sudo apt-get install -y mongodb-org

sudo nano /etc/init.d/mongod
paste this content in the file 'https://raw.githubusercontent.com/mongodb/mongo/master/debian/init.d'

#give permissions
sudo chmod +x /etc/init.d/mongod

#start the service
sudo service mongod start
Comment

install mongo ubuntu 20.04

sudo systemctl start mongod
Comment

install mongo ubuntu 20.04

sudo systemctl stop mongod
Comment

download mongodb ubuntu 20.04

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -sudo add-apt-repository 'deb [arch=amd64] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse'CopyCopy
Comment

install mongo ubuntu 20.04

mongo
Comment

PREVIOUS NEXT
Code Example
Shell :: windows cat grep equivalent 
Shell :: untar all files in a directory 
Shell :: check if cuda installed 
Shell :: how to clone a specific commit from github 
Shell :: git push takes forever 
Shell :: oauth2 provider 
Shell :: How to install Qt console 
Shell :: grep 10 line before 
Shell :: change branch git 
Shell :: yarn install production only 
Shell :: terminal run sh file 
Shell :: Installing ionic local notification plugin 
Shell :: install ansible 
Shell :: Use slack in your terminal or CLI 
Shell :: bash "=~" example 
Shell :: install vue native globally 
Shell :: how to switch branches git 
Shell :: git global ingnore 
Shell :: git rebase branch 
Shell :: linux grep 
Shell :: bash here document example 
Shell :: wget 
Shell :: create flutter project 
Shell :: create github pages from repo 
Shell :: pyinstaller dmg on mac 
Shell :: how to install android sdk tools in ubuntu using command line 
Shell :: shtdown pi cli 
Shell :: Vim deleting all lines containing pattern 
Shell :: store select output hive 
Shell :: The fingerprint for the RSA key sent by the remote host is 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =