1

While setting up some collections in a mongo database to be sharded, I entered the name of one of them wrong (typo letter at the end).

When I do db.printShardingStatus(), I see that inexistent collection sitting there and looking dumb. How can I remove it from my sharding config without breaking anything.

Thanks! :)

Pierre
  • 241
  • 1
  • 2
  • 11

1 Answers1

0

You should read the page on removeshard for the details, but

db.runCommand({"removeshard" : "server:port"});is what you're looking for.

gWaldo
  • 11,957
  • 8
  • 42
  • 69