Skip to content

Instantly share code, notes, and snippets.

@hbarcelos
Created February 22, 2018 17:51
Show Gist options
  • Save hbarcelos/718cefe0547aff96d9e28a1d75cff04c to your computer and use it in GitHub Desktop.
Save hbarcelos/718cefe0547aff96d9e28a1d75cff04c to your computer and use it in GitHub Desktop.
Remove all user-created DBs from mongo.
db.getMongo().getDBNames()
.filter(function(db) {
return ['admin', 'config', 'local'].indexOf(db) === -1
})
.forEach(function (dbName) {
db.getMongo().getDB(dbName).dropDatabase();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment