Meteor: unexpected mongo exit code 100

前端 未结 26 1121
栀梦
栀梦 2020-12-01 04:34

I have just installed Meteor version 0.5.9 (45fef52095) to my CentOS release 6.3 (Final) server (Linux version 2.6.32-279.19.1.el6.i686 (mockbuild@c6b8.bsys.dev.centos.org)

相关标签:
26条回答
  • 2020-12-01 04:55

    Make sure you have enough free space on that partition. If not, you'll get this very error.

    0 讨论(0)
  • 2020-12-01 04:56

    Solved! In my case deleting meteor/local/db/mongodb.lock and meteor reset fix the issue.

    Thanks All!

    0 讨论(0)
  • 2020-12-01 04:57

    Mine was fixed in the end by running export LC_ALL=C. Found the error through the debugging steps suggested in this post: https://stackoverflow.com/a/15752736/1820510

    0 讨论(0)
  • 2020-12-01 04:57

    I was able to fix it by export of LC_ALL, I am using Ubuntu

    export LC_ALL="en_US.UTF-8"

    0 讨论(0)
  • 2020-12-01 05:00

    I'm running meteor under Vagrant and came across this issue, before finding this thread I removed my MongoDB files from /var/lib/mongodb as there was a .lock in there as well, this might or might not have been required but worth a look for other areas where MongoDB might be residing beside the .meteor folder.

    0 讨论(0)
  • 2020-12-01 05:02

    I could recover the error by deleting the Local Mogo db lock.

    Steps to remove the db lock :

    1. Navigate to your app directory(where you have Meteor application files)
    2. Remove file $ rm .meteor/local/db/mongod.lock

    Error occurs if Meteor Application is still running in background. Db lock is not released by the running application or due to improper system/application shutdown and unavailable for second instance of same application. So take care to quit the application every time.

    0 讨论(0)
提交回复
热议问题