How do i start mongodb on mac terminal?

Docs HomeMongoDB Manual

On this page

  • Overview
  • Considerations
  • Install MongoDB Community Edition
  • Run MongoDB Community Edition
  • Using the MongoDB Database Tools
  • Additional Information

Note

MongoDB Atlas

MongoDB Atlas is a hosted MongoDB service option in the cloud which requires no installation overhead and offers a free tier to get started.

Use this tutorial to install MongoDB 6.0 Community Edition on macOS using the third-party Homebrew package manager.

Starting with MongoDB 4.4.1, installing MongoDB via Homebrew also installs the MongoDB Database Tools. See Using the MongoDB Database Tools for more information.

This tutorial installs MongoDB 6.0 Community Edition. To install a different version of MongoDB Community, use the version drop-down menu in the upper-left corner of this page to select the documentation for that version.

Note

EOL Notice

  • MongoDB 5.0 Community Edition removes support for macOS 10.13

MongoDB 6.0 Community Edition supports macOS 10.14 or later.

See Platform Support for more information.

Before deploying MongoDB in a production environment, consider the Production Notes document which offers performance considerations and configuration recommendations for production MongoDB deployments.

Ensure your system meets each of the following prerequisites. You only need to perform each prerequisite step once on your system. If you have already performed the prerequisite steps as part of an earlier MongoDB installation using Homebrew, you can skip to the installation procedure.

Homebrew requires the Xcode command-line tools from Apple's Xcode.

  • Install the Xcode command-line tools by running the following command in your macOS Terminal:

macOS does not include the Homebrew brew package by default.

  • Install brew using the official Homebrew installation instructions.

Follow these steps to install MongoDB Community Edition using Homebrew's brew package manager. Be sure that you have followed the installation prerequisites above before proceeding.

  1. Tap the MongoDB Homebrew Tap to download the official Homebrew formula for MongoDB and the Database Tools, by running the following command in your macOS Terminal:

    If you have already done this for a previous installation of MongoDB, you can skip this step.

  2. To update Homebrew and all existing formulae:

  3. To install MongoDB, run the following command in your macOS Terminal application:

    brew install

Tip

Alternatively, you can specify a previous version of MongoDB if desired. You can also maintain multiple versions of MongoDB side by side in this manner.

Tip

The installation includes the following binaries:

  • The mongod server

  • The mongos sharded cluster query router

  • The MongoDB Shell, mongosh

In addition, the installation creates the following files and directories at the location specified below, depending on your Apple hardware:

Intel Processor

Apple M1 Processor

configuration file

/usr/local/etc/mongod.conf

/opt/homebrew/etc/mongod.conf

log directory

/usr/local/var/log/mongodb

/opt/homebrew/var/log/mongodb

data directory

/usr/local/var/mongodb

/opt/homebrew/var/mongodb

See Apple's documentation for the current list of Apple hardware using the M1 processor. You can also run the following command to check where brew has installed these files and directories:

Starting with MongoDB 4.4.1, the installation also includes the MongoDB Database Tools. See Using the MongoDB Database Tools for more information.

Follow these steps to run MongoDB Community Edition. These instructions assume that you are using the default settings.

You can run MongoDB as a macOS service using brew, or you can run MongoDB manually as a background process. It is recommended to run MongoDB as a macOS service, as doing so sets the correct system ulimit values automatically [see ulimit settings for more information].

  • To run MongoDB [i.e. the mongod process] as a macOS service, run:

    brew services start

    To stop a mongod running as a macOS service, use the following command as needed:

    brew services stop

  • To run MongoDB [i.e. the mongod process] manually as a background process, run:

    • For macOS running Intel processors:

      mongod --config /usr/local/etc/mongod.conf --fork

    • For macOS running on Apple M1 processors:

      mongod --config /opt/homebrew/etc/mongod.conf --fork

    To stop a mongod running as a background process, connect to the mongod using mongosh, and issue the shutdown command as needed.

Both methods use the mongod.conf file created during the install. You can add your own MongoDB configuration options to this file as well.

Note

macOS Prevents mongod From Opening

macOS may prevent mongod from running after installation. If you receive a security error when starting mongod indicating that the developer could not be identified or verified, do the following to grant mongod access to run:

  • Open System Preferences

  • Select the Security and Privacy pane.

  • Under the General tab, click the button to the right of the message about mongod, labelled either Open Anyway or Allow Anyway depending on your version of macOS.

To verify that MongoDB is running, perform one of the following:

  • If you started MongoDB as a macOS service:

    You should see the service mongodb-community listed as started.

  • If you started MongoDB manually as a background process:

    ps aux | grep -v grep | grep mongod

    You should see your mongod process in the output.

You can also view the log file to see the current status of your mongod process: /usr/local/var/log/mongodb/mongo.log.

To begin using MongoDB, connect mongosh to the running instance. From a new terminal, issue the following:

Note

macOS Prevents mongosh From Opening

macOS may prevent mongosh from running after installation. If you receive a security error when starting mongosh indicating that the developer could not be identified or verified, do the following to grant mongosh access to run:

  • Open System Preferences

  • Select the Security and Privacy pane.

  • Under the General tab, click the button to the right of the message about mongosh, labelled either Open Anyway or Allow Anyway depending on your version of macOS.

For information on CRUD [Create,Read,Update,Delete] operations, see:

  • Insert Documents

  • Query Documents

  • Update Documents

  • Delete Documents

Starting in MongoDB 4.4.1, installing MongoDB via brew also installs the MongoDB Database Tools.

The MongoDB Database Tools are a collection of command-line utilities for working with a MongoDB deployment, including data backup and import/export tools like mongoimport and mongodump as well as monitoring tools like mongotop

Once you have installed the MongoDB Server in the steps above, the Database Tools are available directly from the command line in your macOS Terminal application. For example you could run mongotop against your running MongoDB instance by invoking it in your macOS Terminal like so:

It should start up, connect to your running mongod, and start reporting usage statistics.

See the MongoDB Database Tools Documentation for usage information for each of the Database Tools.

By default, MongoDB launches with bindIp set to 127.0.0.1, which binds to the localhost network interface. This means that the mongod can only accept connections from clients that are running on the same machine. Remote clients will not be able to connect to the mongod, and the mongod will not be able to initialize a replica set unless this value is set to a valid network interface.

This value can be configured either:

  • in the MongoDB configuration file with bindIp, or

  • via the command-line argument --bind_ip

Warning

For more information on configuring bindIp, see IP Binding.

If you have previously installed an older version of the formula, you may encounter a ChecksumMismatchError resembling the following:

Error: An exception occurred within a child process:
ChecksumMismatchError: SHA256 mismatch
Expected: c7214ee7bda3cf9566e8776a8978706d9827c1b09017e17b66a5a4e0c0731e1f
Actual: 6aa2e0c348e8abeec7931dced1f85d4bb161ef209c6af317fe530ea11bbac8f0
Archive: /Users/kay/Library/Caches/Homebrew/downloads/a6696157a9852f392ec6323b4bb697b86312f0c345d390111bd51bb1cbd7e219--mongodb-macos-x86_64-4.2.0.tgz
To retry an incomplete download, remove the file above.

To fix:

  1. Remove the downloaded .tgz archive.

  2. Retap the formula.

    brew untap mongodb/brew && brew tap mongodb/brew

  3. Retry the install.

    brew install

How do I run MongoDB on Mac?

To run MongoDB [i.e. the mongod process] manually as a background process, run:.
For macOS running Intel processors: mongod --config /usr/local/etc/mongod.conf --fork..
For macOS running on Apple M1 processors: mongod --config /opt/homebrew/etc/mongod.conf --fork..

How do I open MongoDB in terminal?

To open up the MongoDB shell, run the mongo command from your server prompt. By default, the mongo command opens a shell connected to a locally-installed MongoDB instance running on port 27017 . Try running the mongo command with no additional parameters: mongo.

How do I know if MongoDB is running on my Mac?

Using ps -ef [the process status command] will show if the mongod or the mongodb daemon is running. But if it is not running, it will yield a 0 as the status indicating mondodb is not there.

How do I start MongoDB locally?

Setting up MongoDB on Windows.
Click Install to begin installing all of the MongoDB components on your computer. ... .
Afterwards, you can start up the MongoDB server by typing in the absolute path to the mongod.exe executable file. ... .
To connect to your running MongoDB server, open another Command Prompt window..

Chủ Đề