Free MongoDB Cluster on MongoDB Atlas

Craftsman
3 min readOct 10, 2023

--

MongoDB Atlas is a cloud-based MongoDB database service that allows you to easily set up and manage MongoDB clusters. In this guide, we will walk through the steps to create a MongoDB cluster on MongoDB Atlas.

Step 1: Create an Account or Sign In

To get started, visit the MongoDB Atlas website by following this link: MongoDB Atlas. If you don’t already have an account, you can register for one. If you have an account, sign in to continue.

https://www.mongodb.com/atlas/database

Step 2: Create a Cluster

After signing in, you will be directed to the MongoDB Atlas dashboard. Here, click on the “Create” button to begin creating your MongoDB cluster.

Step 3: Choose Cluster Configuration

In the cluster configuration section, you can choose the options that suit your needs. For simplicity and cost-effectiveness, we recommend choosing the “Free” tier. Additionally, select AWS as the cloud provider.

Step 4: Set Username and Password

Next, you’ll need to set a username and password for your MongoDB cluster. Ensure that you choose a strong password for security.

Step 5: Configure IP Whitelist

To connect to your MongoDB cluster from your server, you need to specify the IP address from which connections will be accepted. Click on the “Add IP Address” button and enter the IP address of your server.

Step 6: Create the Cluster

With all the configuration settings in place, click on the “Finish and Close” button to initiate the cluster creation process. MongoDB Atlas will set up your cluster based on your chosen configuration.

Step 7: Connect to Your Cluster

Once the cluster is created and running, you can obtain the connection string from the MongoDB Atlas dashboard. This connection string can be used in your application to connect to the MongoDB cluster.

mongodb+srv://mongodb_Atlas_test:WHgYR6zHfuD5WHs6@cluster0.p4yufq5.mongodb.net/?retryWrites=true&w=majority

That’s it! You’ve successfully set up a MongoDB cluster on MongoDB Atlas. You can now start using the power and scalability of MongoDB for your applications.

--

--