How to Install MongoDB on Mac High Sierra 10.13 OS X Easy Guide

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

How to Install MongoDB on Mac High Sierra 10.13 OS X - Featured
  1. Download Latest MongoDB Release:

    Get Latest MogoDB .tgz

  2. Simply Double-Click on Archive to Extract

  3. Next Open a Terminal Shell Emulator
    Finder > Applications > Utilities > Terminal
    (Press “Enter” to Execute Commands)

    How to Install MongoDB on Mac High Sierra 10.13 OS X - Open Terminal
  4. Now Relocate MongoDB Stuff

    sudo mv $HOME/Downloads/mongodb* /usr/local/mongodb

    You’ll need to Enter the Admin Pass for Executing sudo commands.

  5. Then Make Needed Directory

    sudo mkdir /data/db
  6. 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
  7. MongoDB Quick Getting-Started Guide:

    MongoDB Quick-Start Guide