MongoDB MacOS High Sierra 10.13 Installation Guide
Hello Mac User! This Tutorial Shows You Step-by-Step How-to Install MongoDB Database on MacOS 10.13 High Sierra.
And MongoDB for Mac High Sierra 10.13 (from “humongous”) is an Open-Source Document Database written in C++, and the leading NoSQL database.
Furthermore, the MongoDB Database Features:
- Document-Oriented Storage >> JSON-style documents with dynamic schemas offer simplicity and power.
- Full Index Support >> Index on any attribute, just like you’re used to.
- Replication & High Availability >> Mirror across LANs and WANs for scale and peace of mind.
- Auto-Sharding >> Scale horizontally without compromising functionality.
- Querying >> Rich, document-based queries.
- Fast In-Place Updates >> Atomic modifiers for contention-free performance.
- Map/Reduce >> Flexible aggregation and data processing.
- GridFS >> Store files of any size without complicating your stack.
- Professional Support by MongoDB >> Enterprise class support, training, and consulting available.
Finally, to the Article Bottom You Find Link to MongoDB Database Administration Essentials Quick-Start
-
Download Latest MongoDB Release:
-
Simply Double-Click on Archive to Extract
-
Next Open a Terminal Shell Emulator
Finder > Applications > Utilities > Terminal
(Press “Enter” to Execute Commands) -
Now Relocate MongoDB Stuff
sudo mv $HOME/Downloads/mongodb* /usr/local/mongodb
You’ll need to Enter the Admin Pass for Executing sudo commands.
-
Then Make Needed Directory
sudo mkdir /data/db
-
Add MongoDB Binaries to User PATH
This for your User:nano $HOME/.bashrc
Append:
export PATH=/usr/local/mongodb/bin:$PATH
Ctrl+x to Save & Exit.
Again to Load the New SetUp simply:bash
-
MongoDB Quick Getting-Started Guide: