Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install mongoDB on ubuntu 22.04

Install MongoDB on Ubuntu
- Ensuring the server is up to date:
$ sudo apt update 
$ sudo apt upgrade -y 
$ sudo apt dist-upgrade -y 

- Install Required Packages:
$ sudo apt install gnupg 
$ echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt update
sudo apt install libssl1.1

- Install MongoDB
$ wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
$ 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 update 
$ sudo apt install -y mongodb-org 

Once installed, check the version of MongoDB:
$ mongod -version 

Once the service has been installed, start and enabling MongoDB Service:
$ sudo systemctl start mongod 
$ sudo systemctl status mongod 

Our MongoDB service is up and running, then enable it to start 
on boot using:
$ sudo systemctl enable mongod 
Comment

Installing mongodb over ubuntu 22.04

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt-get update
sudo apt-get install libssl1.1
Comment

install mongodb ubuntu 18.04

sudo apt updatesudo apt install mongodb-orgCopyCopied!
Comment

install mongodb ubuntu 18.04

sudo add-apt-repository 'deb [arch=amd64] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse'Copy
Comment

install mongodb ubuntu 18.04

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4Copy
Comment

can we install mongodb in ubuntu 22.04

sudo apt install gnupg
Comment

PREVIOUS NEXT
Code Example
Shell :: linux crée utilisateur sudo 
Shell :: display used shell 
Shell :: how to ssh copy to my aws ec2 linux 
Shell :: how to add and commit all files in git 
Shell :: using scp with ssh with server credentials 
Shell :: go get all required packages 
Shell :: how to search on vim 
Shell :: powershell add line to text file 
Shell :: run command on ctrl-c in shell script 
Shell :: reset branch to other branch 
Shell :: after installing cypress is there a cypress directory 
Shell :: go back to previous commit 
Shell :: initialize a local repository 
Shell :: tar gzip compression level 
Shell :: ettercap mac 
Shell :: show output after a keyword in shell script in a file 
Shell :: what does worktree prune do 
Shell :: git add untracked to gitignore 
Shell :: remove packages.sury.org in debian 
Shell :: tinymce vue 2 
Shell :: install serverless-google-cloudfunctions 
Shell :: how to install helm 
Shell :: run command every hour linux 
Shell :: where do i keep ssl cert for ubuntu 
Shell :: install dependencies npm 
Shell :: homebrew 
Shell :: kubectl create 
Shell :: ubuntu useradd 
Shell :: docker run image 
Shell :: git discard changes 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =