以下男女同意给我一个EINVAL错误,并且Node崩溃了:
var posix = require('posix');
console.log(posix.getrlimit('nofile'));
posix.setrlimit('nofile', {soft: 10000});
ERROR:
/var/myfil/index.js:19
posix.setrlimit('nofile', {soft: 10000});
^
Error: EINVAL, Invalid argument
at Object.<anonymous> (/var/myfile/index.js:19:7)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
有什么问题?它就像文档一样。
答案 0 :(得分:7)
如果您尝试设置高于硬限制的软限制,则会发生这种情况。
尝试同时设置它们:
posix.setrlimit('nofile', { soft: 10000, hard: 10000 });