How to reset a mongodb instance on digitalocean

I need to reset my mongo database. I used mupx to upload. Next time I will use compose.io but I did not this time so.
thanks

You can reset the mongo database with this command: meteor reset

Didn’t try:

1 Like

@ip76 not on a deployed app

None of this worked any other ideas?

Can you just delete the instance and re-deploy? This would give you a fresh database. Ideally if you had a snapshot of the app when it was first setup, you could revert back to that and re-deploy to get the updated app code.

I use the following in my Meteor.startup

   var globalObject=Meteor.isClient?window:global;
    for(var property in globalObject){
        var object=globalObject[property];
        if(object instanceof Meteor.Collection){
            object.remove({});
        }
    }

Be sure to remove it right after.

1 Like