mongodbHow to check the version of MongoDB?
To check the version of MongoDB, you can use the db.version() command.
> db.version()
4.2.3
The command db.version() returns the version of MongoDB that is currently running.
The parts of the code are:
db: This is the database object that is used to access the database.version(): This is the method that is used to get the version of MongoDB.
Helpful links
More of Mongodb
- How to use watch in MongoDB?
- How to update many documents in MongoDB?
- How to use unwind in MongoDB?
- How to use triggers in MongoDB?
- How to use MongoDB queue?
- How to perform a health check for MongoDB?
- How to use the MongoDB distinct operator?
- How to remove a field from MongoDB?
- What is MongoDB default port?
- How to use transactions in MongoDB?
See more codes...