The MongoD π€
Hey there, I am a ComputerPhile who loves to build next-gen products.
Today, let's take a quick look π at the daemon process for MongoDB - MongoD π₯;
which handles all the queries that we execute in Mongo Shell π and is also responsible for persisting data.
Take a look at the below diagram and try to understand it.

That's why, MongoD is present inside every mongo server, whether it is a replicaset or a sharded server.
We can start the mongoD process in a mongo server with the help of a command -mongod .
Below is the default configuration for MongoD -

mongod --port <port_number> mongod --bind_ip localhost,123.123.123.123Well, thanks for reading π. I hope you got to learn something new. And if you are still figuring out what the hell journaling logs are π then stay tuned π; let's see you in the next one ππ»


