搜尋

首頁  >  問答  >  主體

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')

#補充:防火牆沒開

#
巴扎黑巴扎黑2755 天前713

全部回覆(2)我來回復

  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-16 13:20:01

    防火牆和安全群組放行埠了嗎?

    回覆
    0
  • PHPz

    PHPz2017-05-16 13:20:01

    iptables要開對應埠?我猜的

    回覆
    0
  • 取消回覆