mongodb installation on ubuntu 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 linux

How To Install MongoDB on Ubuntu 18.04 through command line :

Step 1 — Installing MongoDB

$ curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -

$ apt-key list

$ sudo apt update

$ sudo apt install mongodb-org



Step 2 — Starting the MongoDB Service and Testing the Database

Run the following systemctl command to start the MongoDB service:

$ sudo systemctl start mongod.service

$ sudo systemctl status mongod 
          
$ sudo systemctl enable mongod

$ mongo --eval 'db.runCommand({ connectionStatus: 1 })'

Example 4: ubuntu start mongodb

sudo mongod --fork --config /etc/mongod.conf

Example 5: how to install mongodb database in ubuntu version

> sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10</span>