Salam(意思是你好):)
我在我的 Windows 7 机器上开发了一个 node.js 脚本,它运行良好。但是当我在我的 Ubuntu 12.04 上运行它时,会出现以下错误并停止我的应用程序:
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.start (/httpServer/httpServer.js:9:34)
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)
导致错误的点.listen(80)
在这一行:
http.createServer(onRequest).listen(80);
^
我还尝试了其他一些端口号(如 100、300、500,...)80
,但错误仍然相同。