mongodb install 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: how to install mongoose

$ npm install mongoose

Example 4: npm install mongodb

npm install mongodb --save

Example 5: how to start mongodb in mac

command to activate mongodb through a terminal

mongod --dbpath /usr/local/var/mongodb --logpath /usr/local/var/log/mongodb/mongo.log --fork

Example 6: how to install mongodb server in ubuntu

sudo apt install -y mongodb
# it will install mongodb server into linux system

Tags:

Misc Example