您的位置:首页技术文章
文章详情页

node - 阿里ubuntu服务器,外网通过ip访问不了的问题?

【字号: 日期:2024-07-04 14:16:13浏览:35作者:猪猪

问题描述

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

node - 阿里ubuntu服务器,外网通过ip访问不了的问题?

补充:防火墙没开node - 阿里ubuntu服务器,外网通过ip访问不了的问题?

问题解答

回答1:

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

回答2:

iptables要开对应端口?我猜的