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)
Make sure you have enough free space on that partition. If not, you'll get this very error.
Solved! In my case deleting meteor/local/db/mongodb.lock
and meteor reset
fix the issue.
Thanks All!
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
I was able to fix it by export of LC_ALL, I am using Ubuntu
export LC_ALL="en_US.UTF-8"
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.
I could recover the error by deleting the Local Mogo db lock.
Steps to remove the db 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.