Join us Sept 17 at .local NYC! Use code WEB50 to save 50% on tickets. Learn more >
MongoDB Event
Docs Menu
Docs Home
/
MongoDB Mongosync
/

Install on macOS

To configure MongoDB Mongosync on macOS using a downloaded ZIP file, follow the steps on this page.

This tutorial installs the latest version of mongosync.

MongoDB Mongosync 1.9 supports macOS 10.14 or later.

Mongosync supports synchronization between clusters. For information on MongoDB server version compatibility, see MongoDB Server Version Compatibility.

Follow these steps to manually install Mongosync from the ZIP file.

1

Download the Mongosync ZIP file from the following link:

MongoDB Download Center

  1. In the Version dropdown, select the version of Mongosync to download.

  2. In the Platform dropdown, select your macOS platform.

  3. In the Package dropdown, select zip.

  4. Click Download.

2

To unzip mongosync, use the unzip command in a system shell:

unzip mongosync-*.zip
3

The mongosync binary is in the bin/ directory of the unpacked tarball. To add the location of the mongosync binary to your PATH, do one of the following:

  • Copy the binary into a directory listed in your PATH variable, such as /usr/local/bin. (Update /path/to/mongosync/bin to reflect the location where you extracted the tar file.)

    sudo cp /path/to/mongosync/bin/mongosync /usr/local/bin/
  • Create symbolic links to the mongosync binary from a directory such as /usr/local/bin that is already in your PATH. (Update /path/to/mongosync/bin to reflect the location where you extracted the tar file.)

    sudo ln -s /path/to/mongosync/bin/mongosync /usr/local/bin/mongosync

Back

Linux

On this page