MongoDB
Courses
- MongoDB University
Setup
Linux
- Guide
sudo systemctl enable mongod
to enable mongodb on system startupsudo service start mongod
to manually start mongodbmongo
start using MongoDB, if enabledshow dbs
show databasesuse [db_name]
use a dbshow collections
show collections of a dbdb.[collection_name].find().pretty()
show items in collection
VS Code
- Install MongoDB for VSCode
MongoDB Compass
- GUI for MongoDB