1.申请了一个aws的Windows服务器
2.成功连接
3.写了一个测试文件,并成功运行
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World');
}).listen(80);
console.log('Server running');
4.然后我想通过 关联的弹性ip访问 失败
在目标实例的安全组里放开80端口的流入。