我尝试使用ngnix代理node.js服务器。我的问题是我无法在localhost上访问(curl或nginx)我的node.js服务器,
当打开3000端口到外部时,我可以看到我的节点js服务器正在运行。但curl和nginx无法访问它。
一个令人厌倦的事情是我们启动了一个mongodb,并且可以在localhost上访问一个没有任何问题
我的实例ID如下:i-0fef394cbc350a4f4
这里是指向无法找到localhost的nginx服务器的链接,因此超时:http://ec2-54-246-136-64.eu-west-1.compute.amazonaws.com/
我找不到另一种方式来证明我们无法访问curl localhost:3000
var sticky = require("socketio-sticky-session");
sticky(function () {
// This code will be executed only in slave workers
var http = require('http');
var socketIO = require('socket.io');
var server = http.createServer(app);
var io = socketIO(server);
require('./app_api/config/socketio')(io);
io.on('connection', (socket) => {
log.trace("new user connected");
socket.on('disconnect', () => {
log.trace("user disconnected");
});
});
connectToDispatcher();
process.title = "share_place";
return server;
}).listen(3000, function () {
console.log((cluster.worker ? 'WORKER ' + cluster.worker.id : 'MASTER') + '| PORT ' + 3000)
app.domain.on('error', (er) => {
log.error('error', er.stack);
try {
// make sure we close down within 30 seconds
var killtimer = setTimeout(() => {
process.exit(1);
}, 30000);
// But don't keep the process open just for that!
killtimer.unref();
// stop taking new requests.
server.close();
// Let the master know we're dead. This will trigger a
// 'disconnect' in the cluster master, and then it will fork
// a new worker.
cluster.worker.disconnect();
// try to send an error to the request that triggered the problem
res.statusCode = 500;
res.setHeader('content-type', 'text/plain');
res.end('Oops, there was a problem!\n');
} catch (er2) {
// oh well, not much we can do at this point.
log.error('Error sending 500!', er2.stack);
}
});
}
);
更加疲弱的情况:我们在beanstalk实例上安装了节点代码。
我们从外部访问节点服务器:http://share-place.eu-west-1.elasticbeanstalk.com:8081/
2017/04/21 14:32:19 [warn] 3360#0:重复MIME类型" text / html"在/etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf:42 2017/04/21 14:37:48 [warn] 7358#0:重复MIME类型" text / html"在/etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf:42 2017/04/21 14:38:41 [错误] 7362#0:* 1连接()失败(111:连接被拒绝)连接上游,客户端:41.226.2.5,服务器:,请求:" GET / HTTP / 1.1",上游:" http://127.0.0.1:8081/",主持人:" share-place.eu-west-1.elasticbeanstalk.com" 2017/04/21 14:38:41 [错误] 7362#0:* 1连接()失败(111:连接被拒绝)连接上游,客户端:41.226.2.5,服务器:,请求:" GET /favicon.ico HTTP / 1.1",上游:" http://127.0.0.1:8081/favicon.ico",主持人:" share-place.eu-west-1.elasticbeanstalk.com" ,推荐人:" http://share-place.eu-west-1.elasticbeanstalk.com/" 2017/04/21 14:38:45 [错误] 7362#0:* 1连接()失败(111:连接被拒绝)连接上游,客户端:41.226.2.5,服务器:,请求:" GET / HTTP / 1.1",上游:" http://127.0.0.1:8081/",主持人:" share-place.eu-west-1.elasticbeanstalk.com"
答案 0 :(得分:1)
Maybe you use net module that's why you can't make http request in some cases.
check if socketio-sticky-session use's the module net.createServer or http.createServer.
答案 1 :(得分:0)
这里可能存在很多问题,如果信息太少而且没有提供代码,则无法给出任何确定的答案。
您的应用可以侦听端口3000但它可以绑定到特定接口,因此可以通过外部IP而不是使用环回接口的localhost使用。
您的应用可以在容器中运行,该容器将其端口转发到外部接口,但不转发到其他容器的localhost。
您在问题中包含的URL实际上可能是,可能是处理连接的反向代理,您在开放端口上看到的内容可能无法反映您的服务运行的主机的实际状态。< / p>
您可以尝试使用其他外部IP而不是localhost,看看它是否有效。您可以尝试绑定到Node应用程序中特定接口的端口(我不知道您当前是如何操作的,因为您没有在问题中包含任何代码示例)。然后,您可以尝试关闭外部可用的端口并限制访问,并查看它何时停止工作,但一次只做一件事来缩小问题范围。