答案1
可能是没有任何东西在端口 80 上监听。尝试运行 netstat 命令$ sudo netstat -nap | grep ':80 .*LISTEN'
来查看 Web 服务器是否在端口 80 上监听。如果您已经安装了 Apache,那么它也可能没有运行,因此请尝试通过执行以下操作来重新启动 Apache2。
$ sudo /etc/init.d/apache2 restart
或者
$ sudo service apache2 restart
或者,我只需使用以下命令运行基本的 Apache Web 服务器文档。
部署简单的 Apache Web 服务器了解在虚拟机实例上运行服务器的基础知识。