我正在尝试使用安装在我服务器上的node.js运行一个简单的http示例。我使用以下代码:
var http = require('http');
var server = http.createServer(function(req, res)
{
console.log(req, url)
res.writeHead({myinformation:'Welcome To Node.js'});
res.write('Hello world!');
res.end();
});
server.listen(8080);
将其保存到文件:example.js中,我使用以下命令运行Putty:
$ node example.js
但问题是当我打开浏览器并输入:http://myserverip:8080
时,Putty上会出现以下错误:
events.js:72
throw er; // Unhandled 'error' event
^
Error: listen EACCES
at errnoException (net.js:901:11)
at Server._listen2 (net.js:1020:19)
at listen (net.js:1061:10)
at Server.listen (net.js:1127:5)
at Object.<anonymous> (/newusr/httpExample/example.js:10:8)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
我正在使用Win7,我跟着this guide,打开端口8080的通信,但它仍无法正常工作。
任何帮助将不胜感激! 谢谢!
答案 0 :(得分:0)
当其他服务正在侦听另一个端口时,会出现EACCES错误代码。尝试另一个端口,或以root身份运行,因为有时您需要这些权限绑定到某些端口。
另外,我认为console.log(req, url)
应为console.log(req.url)
。