-
-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: spawn EMFILE #10
Comments
Same here, on OSX |
child_process.js:927 same here, worked on work osx laptop but not one at home. |
I'm using mac OSX Mavericks |
Same error here. It seems that too many process are opened. But I'm not an expert in node so ... BTW I'm on Mavericks if it matters |
I found some infos but don't know how to fix ... http://www.runtime-era.com/2012/10/quick-and-dirty-nodejs-exec-limit-queue.html |
It's like the second result on Google when searching for the error message: Increase your |
It's the first thing I tried and it doesn't work... If you look at the issue you linked, it's the same for others. Increase ulimit doesn't work for everyone. |
👍 Setting |
This did work for me (Mac OS X):
|
ulimit worked for me. OSX Mavericks. Im happy again. |
@8y5 : This fix work perfectly on OSX Mavericks. Thank you. |
|
Thanks for the link @kevva. I tried everything they suggested but couldn't get it working, I even bought the app Lingon3 which they mention and that didn't work. In the end it was fairly simple, I just added the command to the bottom of my zhsconfig and it works fine now. |
ulimit -S -n 2048 # work for me ,thanks! |
add "ulimit -S -n 2048" to ~/.bash_profile |
ulimit -S -n 2048 # worked! |
Increase the maximum number of open file descriptors to 2048 to deal with gulp issues: sindresorhus/gulp-imagemin#10. Prepend node_modules/.bin to PATH for easier use of project-specific node modules.
ulimit -S -n 2048 #worked for me too 👍 :) |
ulimit -S -n 8196 # worked! |
ulimit -S -n 2048 worked . thanks. |
Increase the maximum number of open file descriptors to 2048 to deal with gulp issues: sindresorhus/gulp-imagemin#10. Prepend node_modules/.bin to PATH for easier use of project-specific node modules.
What is this error?
The text was updated successfully, but these errors were encountered: