为什么我不能在我的aws ec2实例上查看我的应用程序? 部署与meteor

我正试图用meteor把我的meteor应用程序放到aws ec2实例上。 以前这个工作对我来说,遵循这个教程 。 我已经成功地运行mup setupmup deploy ,但是当我尝试通过公共DNS访问应用程序时,我得到了

谷歌浏览器的连接尝试ec2-52 – ######。us-west-2.compute.amazonaws.com被拒绝。 该网站可能已closures,或者您的networking可能没有正确configuration。

当我ssh工作正常,似乎有一个问题有关端口80.我试着运行telnet 52.###### 80 ,得到Unable to connect to remote host: Connection refused

当我设置实例时,我的安全组中已经打开了端口80和22。 从那以后,我也添加了“所有stream量”。

当我SSH入服务器然后运行netstat -nlp ,我得到:

 ubuntu@ip-#########:~$ netstat -nlp (No info could be read for "-p": geteuid()=1000 but you should be root.) Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN - tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN - tcp6 0 0 :::22 :::* LISTEN - udp 0 0 0.0.0.0:68 0.0.0.0:* - udp 0 0 0.0.0.0:18210 0.0.0.0:* - udp6 0 0 :::47267 :::* - Active UNIX domain sockets (only servers) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ACC ] SEQPACKET LISTENING 7466 - /run/udev/control unix 2 [ ACC ] STREAM LISTENING 6668 - @/com/ubuntu/upstart unix 2 [ ACC ] STREAM LISTENING 8353 - /var/run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 8670 - /var/run/acpid.socket unix 2 [ ACC ] STREAM LISTENING 137001 - /tmp/mongodb-27017.sock 

任何build议,我应该尝试下一个将不胜感激!

您的netstat输出表明您的应用程序不在端口80上侦听。