http 守护进程没有响应

http 守护进程没有响应

如果我在命令提示符下运行 php 文件,它会按预期工作。但它不会从浏览器加载。

# php /var/www/html/adminer.php

当我尝试从浏览器访问同一个文件时,出现错误:

http://ec2-54-237-75-96.compute-1.amazonaws.com/adminer.php

我已检查 httpd 是否正常工作。端口 80 已打开,selinux 已禁用。

# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.4 (Santiago)

如果无法通过浏览器访问该页面,还可能是什么原因?

更新:

这是 apache 错误日志...

[root@ip-10-140-30-124 html]# tail /var/log/httpd/error_log
[Mon Feb 10 01:04:11 2014] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3 configured -- resuming normal operations
[Mon Feb 10 01:09:11 2014] [notice] caught SIGTERM, shutting down
[Mon Feb 10 01:12:38 2014] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Mon Feb 10 01:12:38 2014] [notice] Digest: generating secret for digest authentication ...
[Mon Feb 10 01:12:38 2014] [notice] Digest: done
[Mon Feb 10 01:12:38 2014] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3 configured -- resuming normal operations

答案1

禁用 iptables 后,Web 服务器即可正常运行。

/etc/init.d/iptables stop

相关内容