MongoDB had an unspecified exception

I try to run the meteor application, but I get a mongo error, not sure how to debug this

[~/sites/tuts]$ meteor --port 5555
[[[[[ ~/Sites/tuts ]]]]]

Unexpected mongo exit code 100. Restarting.
Unexpected mongo exit code 100. Restarting.
Unexpected mongo exit code 100. Restarting.
Can't start mongod

MongoDB had an unspecified uncaught exception.
Check to make sure that MongoDB is able to write to its database directory.
+5
source share
1 answer

Mongo was killed without purification. Try removing .meteor / local / db / mongod.lock. If this fails, you can do a meteor reset, but it will destroy your database.

+15
source

All Articles