I can\'t believe I have to ask this, but how do I stop a query I just ran, which is now running, and will obviously take a very long time to complete in the Mongo shell? C
C
According to Mongo documentation, you should:
db.currentOp()
db.killOp()
Good example script can be found here.