Mongo DB Version in Meteor 1.9

Where can i find out what version of mongo db is being used in a given version of Meteor?

If i go in the dev_bundle folder and find the mongod executable in there i get 4.0.6 if i check its version, does that sound right to people? I have been reading the mongo doc lately and I was curious what version we had in Meteor

me@debian:~/source/repos/omega/.meteor/local/dev_bundle/mongodb/bin$ ./mongod --version
db version v4.0.6

I slightly easier way to find out the version would be to run meteor mongo (while meteor is running):

$ meteor mongo
MongoDB shell version v4.0.6                  
connecting to: mongodb://127.0.0.1:3001/meteor?gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("50223379-ec64-4160-b3f0-01a517b7dfbf") }
MongoDB server version: 4.0.6
meteor:PRIMARY> 
1 Like

thats funny i was trying to pass the --version flag to that command and it was failing, thanks tho, that is much easier :slight_smile:

1 Like

I always look in the History.md: github.com/meteor/meteor/tree/master/History.md

Would be nice if there was a table of Meteor / node / mongodb versions in the docs

1 Like