Answers for "mongodb restart command ubuntu"

31

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
Posted by: Guest on September-18-2020
0

how to restart mongodb server in ubuntu

sudo systemctl restart mongodb
# it will restarts running mongodb server
Posted by: Guest on December-06-2020
-1

mongodb restart command ubuntu

sudo systemctl restart mongod
Posted by: Guest on February-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language