Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

mongoclient install ubuntu

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 db ubuntu

wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list

sudo apt-get update
sudo apt-get install -y mongodb-org
Comment

how to install mongodb server in ubuntu

sudo apt install -y mongodb
# it will install mongodb server into linux system 
Comment

mongodb install ubuntu

follow the steps from the below link

https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
Comment

install mongodb ubuntu

# https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/
sudo apt-get install gnupg
wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
# for Ubuntu 20.04
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
sudo apt-get update
sudo apt-get install -y mongodb-org
# if you get "mongodb-org-mongos : Depends: libssl1.1 (>= 1.1.1) but 1.1.0l-1~deb9u6 is to be installed" error
# https://stackoverflow.com/questions/50375979/getting-error-while-installing-mongodb-in-linux
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
sudo dpkg -i libssl1.1_1.1.1-1ubuntu2.1~18.04.20_amd64.deb
sudo apt-get install -y mongodb-org
Comment

how to install mongodb in ubuntu

sudo apt-get install gnupg
Comment

how to install mongodb in ubuntu

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
Comment

PREVIOUS NEXT
Code Example
Shell :: sudo raspi config 
Shell :: subtract first time step paraview 
Shell :: conda install cufflinks 
Shell :: install vscode ubuntu 20.04 
Shell :: install nginix server ubuntu linux 
Shell :: wsl default user 
Shell :: .desktop file 
Shell :: generate ssl certbot nginx 
Shell :: find process id of port ubuntu 
Shell :: install firebase in react 
Shell :: install ext-pdo_sqlite 
Shell :: show directory size linux 
Shell :: how to install rhythmbox music player on ubuntu 
Shell :: how to update vs code in linux 
Shell :: docker compsoe ubuntu 
Shell :: avoid github credentials 
Shell :: composer list all installed packages 
Shell :: yarn download windows 
Shell :: conda install pyserial 
Shell :: error install cocoapods 
Shell :: disable selinux in redhat 
Shell :: Ignore insecure files and continue [y] or abort compinit [n] 
Shell :: install vue js ubuntu 
Shell :: change commit date linux 
Shell :: run powershell command as administrator 
Shell :: electron build windows exe 
Shell :: snap store fedora 
Shell :: fs extra ts 
Shell :: decompress file gz in linux 
Shell :: How to clone code from your github repository using token authentication 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =