我有一台运行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
答案 0 :(得分:0)
service iptables stop