文章详情页
node - 阿里ubuntu服务器,外网通过ip访问不了的问题?
问题描述
写了个demo(node官网那段hello world),在服务器上运行无问题,curl localhost也可以返回,但外网访问不了
const http = require(’http’)http.createServer(function(req,res){res.writeHead(200,{’Content-Type’:’text/plain’})res.end(’hello world’)}).listen(8082)console.log(’server running on http://localhost:8082’)
补充:防火墙没开
问题解答
回答1:防火墙和安全组放行端口了吗?
回答2:iptables要开对应端口?我猜的
排行榜