Docs Menu
Docs Home
/
MongoDB Atlas

Connect from DBeaver

On this page

  • Prerequisites
  • Procedure
  • Run Atlas SQL Queries

This page describes how to connect to your federated database instance with DBeaver.

  • A federated database instance mapped to one or more data stores.

    Note

    If some or all of your data comes from an Atlas cluster, you must use MongoDB version 5.0 or greater for that cluster to take advantage of Atlas SQL.

  • DBeaver (Community Edition).

  • The MongoDB JDBC Driver.

To connect to your federated database instance from DBeaver:

1
  1. If it's not already displayed, select the organization that contains your project from the Organizations menu in the navigation bar.

  2. If it's not already displayed, select your project from the Projects menu in the navigation bar.

  3. In the sidebar, click Data Federation under the Services heading.

    The Data Federation page displays.

2
3
4

Note

This tutorial uses the JDBC Driver to connect. See Connect Using the Atlas SQL Interface for alternative connection methods.

5

Atlas Data Federation provides a connection string to connect to your federated database instance. You'll need this in a later step.

6
  1. Launch DBeaver.

  2. Add a new driver.

    1. In DBeaver, click Database and select Driver Manager from the dropdown menu.

    2. Click New to open the Create new driver modal.

    3. In the Settings tab, enter the following information:

      Driver Name
      MongoDB
      Class Name
      com.mongodb.jdbc.MongoDriver
    4. In the Libraries tab, click Add File and add your JDBC driver all.jar file.

      Click Find Class.

    5. Click OK. The Create new driver modal closes.

  3. Create a database connection.

    1. In DBeaver, click Database and select New Database Connection from the dropdown menu to open the Connect to a database modal.

    2. From the list of databases, select the MongoDB database driver that you created in the previous step.

      If you don't see MongoDB, select the All category inside the modal.

      Click Next.

    3. In the Main tab, enter the following information:

      JDBC URL
      Your connection string from step 5.
      Username
      The MongoDB user to connect with.
      Password
      The MongoDB user's password.
    4. In the Driver properties tab, expand User Properties. Add the following key-value properties:

      database
      The name of your virtual database.
      user
      The MongoDB user to connect with. Not required if you entered a Username in the previous step.
      password
      The MongoDB user's password. Not required if you entered a Password in the previous step.
  4. Click Finish.

7

In the Database Navigator, expand your MongoDB connection to verify that the federated database instance store mapped to your data is accessible.

To run Atlas SQL queries in DBeaver:

1

The DBeaver Database Navigator displays your virtual databases.

2
  1. Right-click the virtual database you want to query.

  2. Select SQL Editor.

  3. Select Open SQL console.

    A new SQL console window that is connected to the virtual database you selected opens.

3

For example queries, see Query with Atlas SQL Statements.

4

If the query is successful, the results are displayed in a table view below your query.

Next

What is MongoDB Atlas?