1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/mongodb/determine-the-database-version.md

372 B

Determine The Database Version

Whether your Mongo database is local or remote, you should connect to it using the mongo CLI.

Once connected, you can issue the following query:

db.version()

This will output the version of your Mongo database.

source