我已经在新的 centos 服务器上安装了 httpd 和 php。
yum install httpd php -y
我已经安装了数百个网络服务器,但由于某些奇怪的原因,我似乎遇到了麻烦。
当我访问服务器 IP 时,我得到了
This webpage is not available
ERR_CONNECTION_TIMED_OUT
虽然当我执行 wget localhost 时它可以毫无问题地下载 Web 目录中的 index.html 文件。
这意味着 Web 服务器确实在运行,只是不接受来自外部连接的请求。
我研究了一下,没有关于这个问题的文章。
我一生中从来没有遇到过如此奇怪的问题。
编辑:
我已尝试更新防火墙
[root@zh-px3 ~]# iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
[root@zh-px3 ~]# /etc/init.d/iptables save
-bash: /etc/init.d/iptables: No such file or directory