user2858924
user2858924

Reputation: 433

Meteor.js mongodb version

This may be a dumb question, but I am confused about something. I have downloaded mongodb 2.6.4(latest) version to my mac, and deleted old mongodb folder which had executables and other stuff. But whenever I execute 'meteor mongo' command from my meteor.js application, it is opening MongoDB shell version 2.4.9, not the latest one. Why is this happening? Where is this old version is coming from? How can I use the latest version in meteor.js application? Thank you

Upvotes: 3

Views: 3091

Answers (2)

Michael Cole
Michael Cole

Reputation: 16217

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

Upvotes: 2

Tarang
Tarang

Reputation: 75945

Meteor includes its own version of mongodb as a part of its bundle when you ran curl https://install.meteor.com | sh

It does this so its not a hassle to install and they can bundle the correct supported versions with it.

Meteor doesn't yet officially support 2.6.4 on the account of some oplog differences, though you can get it to work without the oplog without any issues, and with the oplog with a couple of issues.

Upvotes: 1

Related Questions