start mongodb linux 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

sudo systemctl start mongod

Example 3: start mongodb service ubuntu

sudo systemctl start mongod
sudo systemctl stop mongod

Example 4: ubuntu start mongodb

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

Example 5: start mongodb in terminal

Start a terminal for your mongo server
Go to <mongodb-install-directory>/bin directory
Run the command./mongod
Start a terminal for your mongo shell
Go to <mongodb-install-directory>/bin directory
Run the command (make sure you put the name of the database)./mongo test

Tags:

C Example