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

Install mongodb on ubuntu 22.04 without problem

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb
sudo dpkg -i ./libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb
sudo apt update
sudo apt install mongodb-org
Comment

Install mongodb on ubuntu 22.04 without problem

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
Comment

Install mongodb on ubuntu 22.04 without problem

curl -fsSL https://www.mongodb.org/static/pgp/server-6.0.asc|sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/mongodb-6.gpg
Comment

PREVIOUS NEXT
Code Example
Shell :: size of directory ps windows 
Shell :: zip not found 
Shell :: how to delete deployments in kubernetes 
Shell :: delete local comits 
Shell :: Command `npm install --save --save-exact react-native` failed 
Shell :: error failed to launch the browser process puppeteer 
Shell :: install maven on linux 
Shell :: how to clean up all docker containers 
Shell :: ifconfig not found ubuntu 20.04 
Shell :: echo to file permission denied 
Shell :: bash get hour 
Shell :: how to restart psql in linux 
Shell :: git stash remove 
Shell :: git abort mmerge 
Shell :: git set upstream 
Shell :: powershell remove folder and contents 
Shell :: Failed to start Redis In-Memory Data Store. 
Shell :: bash for loop find 
Shell :: assign default value in shell script 
Shell :: busy port 
Shell :: pypdf2 
Shell :: gitlab reconfigure 
Shell :: cleaning up your ubuntu system 
Shell :: how to uninstall chromium through terminal 
Shell :: mac find application using port 
Shell :: git list tracked files 
Shell :: get dir name bash 
Shell :: command to find Server’s Public IP Address using curl 
Shell :: git commit number of lines changed 
Shell :: how to check eigen version 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =