How To Connect To Your MongoDB® Deployments Using Robo 3T GUI

5 min read
How To Connect To Your MongoDB® Deployments Using Robo 3T GUI

SHARE THIS ARTICLE

Robo 3T (formerly Robomongo) is a popular desktop graphical user interface (GUI) for your MongoDB hosting deployments that allows you to interact with your data through visual indicators instead of a text-based interface. This open source tool has cross-platform support and actually embeds the mongo shell within its interface to provide both shell and GUI-based interaction.

As a highly-popular GUI leveraged by our MongoDB hosting customers, we’re providing this tutorial on how to quickly connect your ScaleGrid deployment with Robo 3T.

Prerequisites

Identify Client Machine

The first thing we need to do is identify a machine to install Robo 3TYou can either create a new instance, or pick an existing instance which has access to the ScaleGrid MongoDB cluster you’d like to connect to. For new ScaleGrid users, create a free 30-day trial account and set up your first MongoDB cluster (Robo 3T supported on all plans).

  • For our MongoDB Bring Your Own Cloud (BYOC) AWS deployments that are not open to the internet, this may mean selecting an instance that is allowed to connect to the Security Group and also has VPN connectivity to the Virtual Private Cloud (VPC).
  • For AWS customers who have their deployments open to the internet, this will involve adding the identified machine’s IP address to the ScaleGrid cluster’s whitelist.

Install Robo 3T

Robo 3T is available for download here. It’s very important to check your ScaleGrid deployment to ensure you install the Robo 3T version that supports the deployment’s current MongoDB version, and you can check this link for more information on Robo 3T’s supported platforms. The latest version of Robo 3T at the time of writing this is 1.2, which supports MongoDB versions up to 3.4.

Create Robo 3T User on MongoDB

We do not recommend connecting to your MongoDB deployment using the “admin” user that ScaleGrid provides by default. Instead, create a new user with appropriate permissions for client access. The roles that you choose to assign to the user will depend on your exact use-case.

We will show you two examples of creating MongoDB users here from the ScaleGrid console.

Database Specific Users

In order to create simple, per-database, read-write or read-only users, log into the ScaleGrid console, navigate to the cluster details page, and click on the Databases tab. Then, click on the Manage button beside the database you want to create the user on:

Create MongoDB Database User - ScaleGrid Console

 

Then select the Users tab and click on the New User button:

Create MongoDB Database New User - ScaleGrid Console

Fill in the new user’s name and password, then select its role and click Create:

Create MongoDB Database User Wizard - Enter Details - ScaleGrid Console

All Database Users

Users created on the admin database with All-Database roles provide privileges which apply to all non-system databases of the deployment. For this example, we will create a new user who has read-write access to any database on the cluster.

You can use the ScaleGrid web-shell available on the Admin tab to create such a user:

Create MongoDB All Databases User From Admin Tab Web Shell

On the MongoDB web-shell, type in the create new user command as shown in the image above and below:

use admin
db.createUser({ user: "dbuser", pwd: "VeryCleverPassword", roles: ["readWriteAnyDatabase"] })

For creating users with more advanced roles and permissions, refer to the MongoDB Add Users tutorial, MongoDB roles guide or our guide to MongoDB RBAC.

With the prerequisites in place, we can now go to the Robo 3T GUI to continue to connect to our database deployment. For simplicity’s sake, we will use the “dbuser” user we just created to connect to Robo 3T.

Connecting to a Standalone MongoDB Deployment

Our BYOC and Dedicated plan users often start with a standalone MongoDB deployment during their free 30-day trial before moving on to replica sets for development and production environments.

You will need the database server name and port to start, which can be found in your Connection String on your MongoDB cluster details page in the console:

ConnStringHere’s an example of how to identify your server name and port from your Connection String:

  • Connection String: mongodb://admin:<password>@SG-example-1234.servers.mongodirector.com:27017/admin?ssl=true
  • Server Name: SG-example-1234.servers.mongodirector.com
  • Port: 27017

Setting Up a New Connection on Robo 3T

Launch Robo 3T and open the ‘Manage Connections’ window:

ManageConnections

Click on ‘Create’ to setup a new connection.

Standalone Connection Settings

In the Connection tab, select Direct Connection as the ‘Type’, give the connection a name, and enter the server name and port picked from the Connection String found in your ScaleGrid MongoDB cluster details page in the ‘Address’ and ‘Port’ fields:

Std Screen1

Authentication Settings

In the Authentication tab, enter the Database as ‘admin’ (or whatever database you have created your MongoDB user on). Then, enter your user credentials in the remaining fields:

StdScreen2

SSL Settings

If SSL is enabled on your MongoDB cluster, then additional configuration is required on the SSL tab which can be setup as shown below. By default, ScaleGrid provides self-signed certificates, however you may ask us to buy them on your behalf:

StdSSLScreen3

You are now set! Click on ‘Test’ to test the connection. Robo 3T should be able to connect successfully.

Save the connection, then double click on it, and you will see your database.

StdDBList

Connecting to a MongoDB Replica Set Deployment

All of our Shared plan users are started on replica sets by default, though most production workloads are deployed on (Dedicated or BYOC) replica sets.

Connecting your ScaleGrid MongoDB replica set to Robo 3T is similar to connecting a standalone deployment. Most of the settings are the same, except instead of specifying a single server name, we need to specify a list of server names. The list can be created from the Connection String.

If your connection string looks like:

mongodb://admin:<password>@SG-example-170.servers.mongodirector.com:47100,SG-example-171.servers.mongodirector.com:47100,SG-example-172.servers.mongodirector.com:47100/admin?replicaSet=RS-example-0&ssl=true

then, your list of server and ports would be:

  • SG-example-170.servers.mongodirector.com:47100,
  • SG-example-171.servers.mongodirector.com:47100
  • SG-example-172.servers.mongodirector.com:47100

And the replica set name is: 'RS-example-0'.

Setup a New Replica Set Connection on Robo 3T

Like before, launch Robo 3T and open the ‘Manage Connections’ window. Then click on ‘Create’ to setup a new connection.

Replica Set Connection Settings

Select Type as ‘Replica Set’, type in a name, and then enter your server names as found by the example above. Your replica set name can also be entered:

RSScreen1

The configuration on the Authentication and SSL tabs are identical to the standalone configuration.

Once setup, click on ‘Test’ to verify connectivity and then double click on the connection to establish a connection.

RSDbList

Troubleshooting

If you’ve completed all of the above steps for either a MongoDB standalone or a replica set deployment and your connections aren’t working, here are a few to things to try out:

  1. Ensure you can connect from the client machine to the MongoDB server using mongo shell. The syntax for connection is available on the ScaleGrid MongoDB cluster details page in the Overview tab under the heading ‘Command Line String’.
  2. Ensure that the MongoDB version is supported by the Robo 3T you are using.
  3. Ensure that the credentials you’re using to connect are correct.
  4. Check if the deployment has SSL enabled and you have configured it correctly.

If you have any issues, get in touch with us at support@scalegrid.io and we would be happy to help you out!

For more information, please visit www.scalegrid.io. Connect with ScaleGrid on LinkedIn, X, Facebook, and YouTube.
Table of Contents

Stay Ahead with ScaleGrid Insights

Dive into the world of database management with our monthly newsletter. Get expert tips, in-depth articles, and the latest news, directly to your inbox.

Related Posts

Redis vs Memcached in 2024

Choosing between Redis and Memcached hinges on specific application requirements. In this comparison of Redis vs Memcached, we strip away...

multi cloud plan - scalegrid

Plan Your Multi Cloud Strategy

Thinking about going multi-cloud? A well-planned multi cloud strategy can seriously upgrade your business’s tech game, making you more agile....

hybrid cloud strategy - scalegrid

Mastering Hybrid Cloud Strategy

Mastering Hybrid Cloud Strategy Are you looking to leverage the best private and public cloud worlds to propel your business...

NEWS

Add Headline Here