How to find the exact version of installed MongoDB

后端 未结 5 1881
独厮守ぢ
独厮守ぢ 2021-01-31 01:04

I have mongoDB 3.2 installed locally for Windows 7. I would like to find out its specific version (like is it 3.2.1, or 3.2.3 or...). How could I find it? If I open the database

5条回答
  •  Happy的楠姐
    2021-01-31 01:35

    To check mongodb version use the mongod command with --version option.

    To check MongoDB Server version, Open the command line via your terminal program and execute the following command:

    Path : C:\Program Files\MongoDB\Server\3.2\bin Open Cmd and execute the following command: mongod --version To Check MongoDB Shell version, Type:

    mongo --version

提交回复
热议问题