简单的nodejs http代理失败,“打开的文件太多”
那么,忽略它。 我已经打开了一个问题https://github.com/joyent/node/issues/793
尝试运行http://www.catonmat.net/http-proxy-in-nodejs
var http = require('http');
http.createServer(function(request, response) {
var proxy = http.createClient(80, request.headers['host'])
var proxy_request = proxy.request(request.method, request.url, request.headers);
proxy_request.addListener('response', function (proxy_response) {
proxy_response.addListener('data', function(chunk) {
response.write(chunk, 'binary');
});
proxy_response.addListener('end', function() {
response.end();
});
response.writeHead(proxy_response.statusCode, proxy_response.headers);
});
request.addListener('data', function(chunk) {
proxy_request.write(chunk, 'binary');
});
request.addListener('end', function() {
proxy_request.end();
});
}).listen(8080);
大量的请求失败后:
net.js:695
self.fd = socket(self.type);
^
Error: EMFILE, Too many open files
at net.js:695:19
at dns.js:171:30
at IOWatcher.callback (dns.js:53:15)
节点0.4.2在OSX 10.6上
您可能正在操作系统中打开文件的最大值(默认值)(对于Linux,它为1024),尤其是在您的请求数量很大时。 例如,在Linux中,您可以使用ulimit命令来增加资源限制:
ulimit -n 8192
在这里复活一个旧帖子,但我想为Ubuntu添加我自己的答案(无法获得ulimit命令工作:s):
$ sudo vim /etc/security/limits.conf
添加以下内容:
SOME_USER hard nofile SOME_NUMBER
SOME_USER soft nofile SOME_NUMBER
将SOME_USER替换为您的用户。 将SOME_NUMBER替换为高于导致问题的限制的数字。
$ sudo vim /etc/pam.d/common-session
添加以下内容:
session required pam_limits.so
重新启动你的机器,问题应该修复:)。
链接地址: http://www.djcxy.com/p/46451.html上一篇: Simple nodejs http proxy fails with "too many open files"
下一篇: Runtime linker, adding path to parent executable to the resolution path