how to install mongodb on ubuntu 18.04 code example
Example 1: mongodb install in ubuntu
sudo apt update
sudo apt install -y mongodb
//checking service and db
sudo systemctl status mongodb
or service mongodb status
//start service
sudo systemctl start mongod
or service mongodb start
//stop service
sudo systemctl stop mongod or
service mongodb stop
Example 2: start mongodb service ubuntu
sudo systemctl start mongod
sudo systemctl stop mongod
Example 3: how to install mongodb in ubuntu 20.04 lts fossa
sudo apt update
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 update
sudo apt install -y mongodb-org
Example 4: ubuntu start mongodb
sudo mongod --fork --config /etc/mongod.conf