Answers for "how to use mongodb in ubuntu terminal"

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 install mongodb in ubuntu

wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
Posted by: Guest on January-31-2021
0

how to install mongodb in ubuntu

sudo apt-get install gnupg
Posted by: Guest on January-31-2021
0

how to use mongodb in ubuntu terminal

mongod --dbpath ~/db/data
Posted by: Guest on July-22-2021

Code answers related to "how to use mongodb in ubuntu terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language