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
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
sudo apt updatesudo apt install mongodb-orgCopyCopied!
sudo add-apt-repository 'deb [arch=amd64] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse'Copy
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4Copy
sudo apt install gnupg