Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 372 Bytes

determine-the-database-version.md

File metadata and controls

14 lines (9 loc) · 372 Bytes

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