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 :: aws s3 download file 
Shell :: remove .idea folder from git 
Shell :: how to remove remote origin git 
Shell :: add credentials git linux 
Shell :: open a pdf on linux 
Shell :: graphql comment 
Shell :: download visual studio 2019 for ubuntu 
Shell :: add date to git reflog 
Shell :: bash merge pdf 
Shell :: ubuntu wifi enabled no internet connection 
Shell :: django.core.exceptions.ImproperlyConfigured: Requested setting ROOT_URLCONF, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. 
Shell :: ubuntu start black screen 
Shell :: composer install fast download 
Shell :: macos clear terminal 
Shell :: sh vs bash 
Shell :: bash run program in loop 
Shell :: ubuntu wsl disable sudo password prompt 
Shell :: mac generate ssh private key 
Shell :: update arch repo using reflector 
Shell :: remove composer package 
Shell :: htpasswd add user 
Shell :: git ignore folder command 
Shell :: npm install capacitor to existing angular project 
Shell :: git discard all local changes 
Shell :: add gif github readme 
Shell :: git pull from template repository 
Shell :: create directory linux 
Shell :: install oh my zsh! 
Shell :: git change rebase to merge 
Shell :: linux change owner 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =