1
cyr1l 2013-09-12 12:04:21 +08:00
ip 是 0.0.0.0 才行
|
2
sdysj 2013-09-12 12:12:12 +08:00
查端口为啥用iptables?netstat -nat就是了........
|
3
nicolazj OP @cyr1l 监听的是0.0.0.0
http.createServer(app).listen(app.get('port'),'0.0.0.0', function(){ console.log('Express server listening on port ' + app.get('port')); }); 就是3000端口不行,82 就可以。端口也没被占用 |
4
nicolazj OP @sdysj 想看看有没有被防火墙挡住啊,netstat查了,3000也没被占用。而且从vps 本地localhost访问网站是可以访问的
|
5
anheiyouxia 2013-09-12 14:22:11 +08:00
iptables默认是拦截这些端口的吧?你试试关闭iptables看看行不行先,如果行,那就添加一条规则
|