Print version Meteor.js mongodb

This may be a stupid question, but I am somewhat confused. I downloaded mongodb version 2.6.4 (latest version) on my Mac and deleted the old mongodb folder which contained executables and other stuff. But whenever I execute the command "meteor mongo" from my meteor.js application, it opens MongoDB version 2.4.9 shell, not the latest. Why is this happening? Where does this old version come from? How do I use the latest version in meteor.js app? Thanks you

+3


source to share


2 answers


Meteor includes its version of mongodb as part of its package at startup curl https://install.meteor.com | sh

It does this so it doesn't need to be installed and they can bundle supported versions with it.



Meteor does not officially support 2.6.4 yet due to some differences in the oplog, although you can get it to work without the oplog without any problems, and with the oplog with a few problems.

+1


source


Meteor 1.0.x supports both 2.6 and 3.0. It ships with 2.6 locally.



http://info.meteor.com/blog/meteor-104-mongo-cordova-template-subscriptions

+2


source







All Articles