node - 阿里ubuntu服务器,外网通过ip访问不了的问题?
巴扎黑
巴扎黑 2017-05-16 13:18:01
0
2
732

写了个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')

补充:防火墙没开

巴扎黑
巴扎黑

全部回复(2)
曾经蜡笔没有小新

防火墙和安全组放行端口了吗?

PHPzhong

iptables要开对应端口?我猜的

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板