- MongoDB
- Express
- Angular
- Nodejs
MongoDB Installation guide for Ubuntu
- To Start Mongo DB
sudo service mongod start
- To Stop Mongo DB
sudo service mongod stop
- To Restart Mongo DB
sudo service mongod restart
- To Check Mongo DB Status
sudo service mongod status
mongo
(Get in DB Terminal)show dbs
(Show all database)use ChinmayDB
(switched to db ChinmayDB)show collections
(Show all collections)db.users.find( {} )
(Retrieve all documents in the users collection)