“Installer MongoDB Ubuntu 20.04” Réponses codées

Installer 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
imaskm

Installer Mongo Ubuntu 20.04

sudo systemctl restart mongod
Hiren Reshamwala

Installer Mongo Ubuntu 20.04

sudo systemctl status mongod
Condemned Chimpanzee

Installer Mongo Ubuntu 20.04

sudo systemctl enable mongod
Condemned Chimpanzee

Comment installer MongoDB dans 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
Elated Eagle

MongoDB Installer 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
Adorable Alpaca

Réponses similaires à “Installer MongoDB Ubuntu 20.04”

Questions similaires à “Installer MongoDB Ubuntu 20.04”

Plus de réponses similaires à “Installer MongoDB Ubuntu 20.04” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code