Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a new meteor.js file and get error 100, MongoDB not able to write

Tags:

mongodb

meteor

I'm playing with meteor.js and I get this error:

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.

I'm not sure how to remedy this, especially within the context of Meteor.js I installed using curl on snow leopard mac os.

It was actually working for a while as I did a few exercises from a book I have, then it conked out with the error. Not sure what I did.

like image 423
William Avatar asked Jan 24 '13 07:01

William


3 Answers

I fixed this by going to .meteor\local\db and deleting mongod.lock

like image 177
Farzher Avatar answered Nov 17 '22 23:11

Farzher


I had this problem when I updated from 0.7 to 0.8 in my local environment, I had nothing to loose in my local database, so I fixed by:

rm -rf .meteor/local/db
like image 39
Jorge Torres Avatar answered Nov 17 '22 23:11

Jorge Torres


As with our discussion, you just need to free up some disk space, I wish meteor would give more descriptive errors.

If you free up some space it should sort itself out

like image 6
Tarang Avatar answered Nov 18 '22 01:11

Tarang