我刚刚启动一个使用 CentOS 7 x64 的 VPS 实例。我遵循这个教程用于安装阿帕奇 HTTP 服务器
sudo yum install httpd
sudo systemctl start httpd.service
但是当我使用浏览器(在客户端 - 我的笔记本电脑)时,转到
http://my_server_IP_address/
我没有看到 Apache HTTP Server 的默认欢迎页面。
我卡在这里,请帮助我!
答案1
当我读到时我很不幸不完整的教程。
阅读其他教程后: http://www.guru99.com/what-is-apache-how-to-install-it.html
我输入:
iptables -I INPUT -p tcp --dport 80 -j ACCEPT
然后去
http://my_server_ip_address/
有用。