This blog represents steps required to enable replication in MongoDB when access control is disabled. The related details can be found on the page, Deploy Replica Set.
Following are some of the key aspects which need to be understood in relation with MongoDB replica set:
Following are some of the steps which needed to be done to enable replication with MongoDB:
First and foremost, lets check the replication status of MongoDB instance. Grant the clusterAdmin role to the admin user, if not present. Following command grants the clusterAdmin role to admin user. Before executing following command, make sure you have selected the admin database by executing command such as use admin and login into the admin database using command such as db.auth(“admin”, “adminPassword”).
db.grantRolesToUser("admin", ["clusterAdmin"]);
Once done with above, execute one of the following commands to get information in relation with replication:
rs.conf();
Figure 1. MongoDB Replication Not Enabled
db.runCommand({replSetGetConfig: 1});
Figure 2. MongoDB Replication Not Enabled based on replSetGetConfig command
Observe that replication is not yet enabled.
Install two additional mongodb instances on, maybe, another VMs. One can also try with docker containers.
Start each member of the replica set by specifying the name of the replicaset using –replSet option. Following is sample command:
sudo mongod --dbpath /path/to/mongo/data --replSet "vflux01"
Make sure the name of replica set is same. In above command, –dbpath is used to specify the path of mongo data directory. The value can be found from /etc/mongod.conf.
Connect to one of the member of the replica set and execute following command, given name of the replicaSet is set to “vflux01”:
rs.initiate( { _id : "vflux01", members: [ { _id : 0, host : "ip_address_of_current_mongo_instance:27017" } ] })
Note that rs.initiate command only needs to be executed on one and only one member of the replica set. Execute following commands to make sure replica set is configured correctly.
rs.conf()
Figure 3. MongoDB Replication Enabled
rs.status()
Figure 4. MongoDB Replicaset with Initial Member
Note that there is just one member with ip configured using rs.initiate command.
Add other two members of the replica set by executing following command:
rs.add("ip_address_other_mongo_instance_1:27017");
Execute following command to check the replication status. Note one additional member added to the replica set.
rs.status()
rs.slaveOk();
Above command allows the current connection to allow read operations to run on secondary members.
As Large Language Models (LLMs) evolve into autonomous agents, understanding agentic workflow design patterns has…
In today's data-driven business landscape, organizations are constantly seeking ways to harness the power of…
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…
Artificial Intelligence (AI) has evolved significantly, from its early days of symbolic reasoning to the…