javascript - Getting 'unexpected mongo exit code 100' while running a meteor application -
i new meteor .i started learning meteor language referring book 'my first meteor application'...while running application getting 'unexpected mongo exit code 100' error.it showing 'unexpected mongo exit code 100 restarting'.help me on error
this error indicates either mongo process still running in background or killed improperly. may use
try `ps -a | grep 'mongo'
to see what's going on. either way, in .meteor/local/db
directory, there non-empty mongo.lock
file. if there's active mongo process, kill , file should become empty. otherwise remove file manually. when you're done error should disappear.
Comments
Post a Comment