upstream timed out (110: Connection timed out) while reading response header from upstream解决办法

Nginx 日志报错信息如下:

2018/06/29 17:19:42 [error] 8303#0: *30 upstream timed out (110: Connection time
d out) while reading response header from upstream, client: 192.168.33.1, server
: waiter-host.chuchujie.com, request: "GET /admin.php?s=/Index/test HTTP/1.1", u

pstream: "fastcgi://127.0.0.1:9000", host: "waiter-host.chuchujie.com"


解决方法:

1,调整nginx站点配置。
我们添加如下代码:
proxy_read_timeout 300;


2,php设置时间过短,执行超时有可能会影响。
通过php –ini查看ini路径,修改php.ini重启对应服务。

调整max_execution_time = 300 ;


从网上查找结果,发现都只是说出了第一个nginx 配置需要增大超时时间,修改完后,却没效果。 最后发现PHP 的配置 最大执行时间限制了,这个也需要调整(很重要)

你可能感兴趣的:(Linux,服务器)