Docs Menu

Docs HomeView & Analyze DataMongoDB Compass

Connect to MongoDB

On this page

  • Considerations
  • Connect
  • Connect to Compass from the Command Line
  • Advanced Connection Options

This page outlines how to use MongoDB Compass to connect to a MongoDB host. You can connect to a standalone, replica set, or sharded cluster host.

Note

MongoDB Atlas

If you need to create a MongoDB host, consider using MongoDB Atlas. Atlas is a cloud-hosted database-as-a-service which requires no installation, offers a free tier to get started, and provides a copyable URI to easily connect Compass to your deployment.

If you need to install Compass, see Download and Install Compass for instructions.

  • When connecting Compass to a replica set, it is not recommended to connect directly to an individual replica set member. If the member to which you are connected switches from a primary member to a secondary or vice versa as the result of an election, Compass may either forcibly close the connection or display stale data.

    Instead, to connect to a replica set, use either the replica set SRV record or Replica Set Name when filling in your connection information.

  • Starting in MongoDB Compass 1.19, Compass displays a warning message when connected to non-genuine MongoDB instances as these instances may behave differently from the official MongoDB instances; e.g. missing or incomplete features, different feature behaviors, etc.

  • Starting in version 1.39.2, MongoDB Compass no longer supports migrating from legacy connection files that pre-date version 1.31.0. Legacy connections refer to an internal Compass connection-options format that is stored on disk and no longer supported after version 1.39.0.

    If you have legacy connections saved in your favorites, export the connections on version 1.39.0 to convert them into the new format before updating to version 1.39.2 or later.

You can connect your deployments by either:

  • Providing your connection string.

  • Specifying Advanced Connection Options. Advanced connection options allow you to specify authentication, TLS/SSL, and SSH connection options. To learn more, see Advanced Connection Options.

When you provide a connection string, Compass supports most Connection String Options supported by MongoDB.

By default, Compass's default socketTimeoutMS value is 60000, or 60 seconds. If you are frequently experiencing timeouts in Compass, consider setting this option to a higher value in your connection string.

For a complete list of the connection string options that Compass supports, see the Compass Connection README on GitHub.

1

If you have the connection string for your deployment available, you can paste the string directly into the dialog box. You can use either the Standard Connection String Format or the DNS Seedlist Connection Format.

To obtain the connection string for an Atlas cluster:

  1. Navigate to your Atlas Clusters view.

  2. Click Connect for your desired cluster.

  3. Click Connect with MongoDB Compass.

  4. Copy the provided connection string.

Warning

If you click into the MongoDB Compass connection form to edit your connection string, Compass shows credentials in plaintext by default.

To edit your connection string credentials without exposing your password, use the Advanced Connection Options > Authentication tab on the Compass connection form.

To learn how to format the connection string for a deployment that is not hosted on Atlas, see Connection String URI Format.

2

Click Connect or Save & Connect to navigate to the Compass Home Page.

The Save & Connect button prompts you to save your connection string as a Favorite Connection and then navigates to the home page.

Important

Required Access

Once you are connected to your MongoDB deployment, you may require specific user roles to access various Compass features. For more information on the required roles for Compass features, see Required Access.

You can start a Compass session from the command line.

In enterprise environments, a scripted start can make it easier to deploy Compass. For example, to limit access to sensitive systems, you can configure a command line start so that Compass can run on a jump host.

For details, see Start Compass from the Command Line.

The advanced connection options provide additional ways to connect Compass to MongoDB. Advanced connection options allow you to specify authentication, TLS/SSL, and SSH to securely connect to your deployment.

For details, see Advanced Connection Options.

Tip

See also:

To learn how to disconnect your deployment, see Disconnect from MongoDB

←  Capabilities of Compass EditionsStart Compass from the Command Line →