Tag Archives: MongoDB

Mongo DB – Basic commands

By | 17/11/2021

In this post, we will see some MongoDB basic commands that will help us to manage our MongoDB instances.Here, we can find all Mongo DB’s commands. First of all, we connect to Mongo shell with the command mongo and then, we will start to run some commands: SHOW DBS – It shows all databases USE… Read More »

Docker – MongoDB

By | 10/11/2021

In these previous posts:MongoDB – How to install it on macOS MongoDB – How to install on Windowswe have seen how to install Mongo DB.In reality, with DOCKER, we can use MongoDB without install it on our system. IMPORTANT: For this post, I have used a Windows system but it is the same with Mac… Read More »

MongoDB – How to install it on macOS

By | 27/01/2021

In this post, we will see how to install and configure MongoDB on macOS. First of all, we open the Terminal and run the command /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)” , in order to install Homebrew brew. Then, we run the command brew tap mongodb/brew, in order to download the official Homebrew formulae for MongoDB and… Read More »

MongoDB – How to install on Windows

By | 09/09/2020

In this post, we will see how to install and configure MongoDB on Windows.But first of all, what is MongoDB?MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability.A MongoDB Database is formed of three main components:DATABASE – the physical container for collectionsCOLLECTION – it is a group of… Read More »