Node.jsがインストールされたAmazon EC2でDebianのインスタンスを実行しています。以下のコードを実行すると:
http = require('http');
http.createServer(function (request, response){
response.writeHead(200, {'Content-Type':'text/plain'});
response.end('Hello World\n');
}).listen(80);
console.log("Running server at port 80");
以下の出力が表示され、ポート80でリッスンしている別のプロセスがあることがわかります。
Running server at port 80
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> (/home/admin/nodetests/nodetest.js:6:4)
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)
ここで、ポート80でリッスンしているプロセス(何かが隠されている場合はrootとして)があるかどうかを確認すると、次のようになります。
netstat -tupln
以下の出力が表示され、ポート80で何も受信していないことがわかります。
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1667/sshd
tcp6 0 0 :::22 :::* LISTEN 1667/sshd
違いがある場合、debianはインバウンドルールとしてポート80を開いていることに注意してください。
私の質問は、次のとおりです。ポート80をリッスンしているプロセスを識別できないのはなぜですか?Debianでブロックされるのはなぜですか?コードを正しく実行するには、どのような手順を踏む必要がありますか?