Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the meteor MongoDB database?

Tags:

mongodb

meteor

When I create a meteor app, where is the database?

I have an app called leaderboard, but when I run mongo shell and do show dbs I see only local (empty) and test but test doesn't doesn't have the same contents as my leaderboard app. Where does meteor create the Mongo database and how can I access it from mongo shell (so I can load some data into it)?

like image 571
Max Hodges Avatar asked Mar 12 '13 14:03

Max Hodges


2 Answers

You can connect to your app's mongodb with meteor mongo and then us show collections to list the Meteor.Collections you've created.

like image 157
Rahul Avatar answered Sep 19 '22 05:09

Rahul


You need to be running the application with the meteor run command in one session, at which point you can run mongo meteor in another session on the same machine, which will include something like

[kfullert@shotgun ]$ meteor mongo
MongoDB shell version: 2.2.1
connecting to: 127.0.0.1:3002/meteor

At that point, you can use the URL in the "connecting to" line with the standard mongo tools (caveat - you need to be running your project with meteor at the same time, as "meteor run" is what spins up the mongo server for your project

[kfullert@shotgun ]$ mongo 127.0.0.1:3002/meteor
MongoDB shell version: 2.2.3
connecting to: 127.0.0.1:3002/meteor
>

For mongoimport, you'll probably want something like:

[kfullert@shotgun ]$ mongoimport -h 127.0.0.1 --port 3002 -d meteor

Additionally, it may be possible to run mongoimport without meteor running, by using the following switch from your project root directory (untested so beware)

mongoimport --dbpath .meteor/local/db -d meteor
like image 20
kgfullerton Avatar answered Sep 20 '22 05:09

kgfullerton