60秒后Apache Web服务器超时

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了60秒后Apache Web服务器超时相关的知识,希望对你有一定的参考价值。

我在IBM softlayer中运行apache web server + php 60秒后遇到超时。

这些是我的设置(这些设置后httpd服务器重启)

httpd.conf  
TimeOut 300
Timeout 300

*同时尝试了TimeOut和Timeout的同一条目。

php.ini
max_execution_time = 300  

PHP代码:

<?php
set_time_limit(10000);  //Just to make sure
sleep(70);
echo "Successful";
?>  

Using Command Prompt

php test.php  

结果成功

Using different browsers (Chrome, Firefox and Safari)

http://mysite/test.php    

结果:超时恰好在60秒!

Logs

php_error.log和httpd error_log 没错!

我发现了类似的文章,但每个人都指向max_execution_time和Timeout。到目前为止,没有帮助。 非常感谢!

答案

php和apache服务器也存在很多限制

L:

关于apache限制:

在你的apache服务器中找到httpd.conf:

c: WampDeveloper Config Apache extra httpd- default.conf

并改变限制:

Timeout 300
max_execution_time = 300

的:

在关于php.ini:

upload_max_filesize = 256M
post_max_size = 257M
memory_limit = 258M
max_input_time = 300
max_execution_time = 300

毕竟更改了重启你的apache服务器我希望它是完全的帮助

以上是关于60秒后Apache Web服务器超时的主要内容,如果未能解决你的问题,请参考以下文章

对远程 WebDriver 服务器的 HTTP 请求在 60 秒后超时。仅在通过任务调度程序运行时发生

将 AWS Lambda 连接到 Redshift - 60 秒后超时

Selenium 错误 - 对远程 WebDriver 的 HTTP 请求在 60 秒后超时

Wildfly 8.2/undertow 读取超时

是否可以将网络调用超时设置为 60 秒以上。

Chrome 将在 60 秒后关闭我的 ajax 帖子