Phusion Passenger and Meteor MongoDB Reset

Hello all,

I recently deployed a meteor app via Phusion Passenger and on now on my local machine I’ve updated my schema and relative seeds.

How can I redeploy my meteor app with a database reset? Is there any directory I need to delete so it would create new meteor data for the app? I cannot find a tutorial specific to this problem.

It’s currently configured this way:
passenger_env_var MONGO_URL mongodb://localhost:27017/meteor;

Thanks so much. :slight_smile:

i think just login to mongodb and remove all collections

2 Likes

Hello

Thanks for your tip :slight_smile:

Just to document for future use:

default location: /var/lib/mongodb

mongo
show dbs
use mydatabasename
db.dropDatabase();