无法从其他计算机连接到服务器

时间:2014-04-07 22:21:18

标签: node.js httpserver

我有一台运行CentOs 6.3的服务器,其上安装了最新版本的节点。 当我执行此代码时

var http = require('http');

var server = http.createServer(function (request, response) {
    console.log('c');
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.end("Hello World\n");
});
    server.listen(80,"0.0.0.0",function(){
        console.log(this._connectionKey);
    });
// Put a friendly message on the terminal
console.log("Server running");

我收到以下消息: 服务器运行 4:0.0.0.0:80 到目前为止这么好,这意味着服务器应该运行。 但是,当我尝试通过ip访问该网站时,主机公司给了我一个"未找到"信息。 我也尝试省略Ip,将其更改为127.0.0.1甚至是外部IP。我也将端口更改为1337和gurnisht,它没有帮助。

P.S。这个代码示例是一个检查错误的测试,我有一个更复杂的服务器使用express同样的问题。

TNX

1 个答案:

答案 0 :(得分:0)

好吧,我发现了问题。 我的防火墙仍在工作。 我只是停止了iptables

service iptables stop