178

我让 Puma 作为上游应用服务器运行,Riak 作为我的后台数据库集群。当我发送一个请求,该请求为大约 25K 用户减少一大块数据并将其从 Riak 返回到应用程序时,我在 Nginx 日志中收到错误消息:

从上游读取响应标头时上游超时(110:连接超时)

如果我在没有 nginx 代理的情况下直接查询我的上游,使用相同的请求,我会得到所需的数据。

一旦放入代理,Nginx 超时就会发生。

**nginx.conf**

http {
    keepalive_timeout 10m;
    proxy_connect_timeout  600s;
    proxy_send_timeout  600s;
    proxy_read_timeout  600s;
    fastcgi_send_timeout 600s;
    fastcgi_read_timeout 600s;
    include /etc/nginx/sites-enabled/*.conf;
}

**virtual host conf**

upstream ss_api {
  server 127.0.0.1:3000 max_fails=0  fail_timeout=600;
}

server {
  listen 81;
  server_name xxxxx.com; # change to match your URL

  location / {
    # match the name of upstream directive which is defined above
    proxy_pass http://ss_api; 
    proxy_set_header  Host $http_host;
    proxy_set_header  X-Real-IP  $remote_addr;
    proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_cache cloud;
    proxy_cache_valid  200 302  60m;
    proxy_cache_valid  404      1m;
    proxy_cache_bypass $http_authorization;
    proxy_cache_bypass http://ss_api/account/;
    add_header X-Cache-Status $upstream_cache_status;
  }
}

Nginx 有一堆超时指令。我不知道我是否遗漏了一些重要的东西。任何帮助将不胜感激....

4

15 回答 15

83

发生这种情况是因为您的上游响应请求的时间太长,并且 NGINX 认为上游已经无法处理请求,因此它响应错误。location只需在配置块中包含并增加 proxy_read_timeout 即可。同样的事情发生在我身上,我在工作中为内部应用程序使用了 1 小时超时:

proxy_read_timeout 3600;

有了这个,NGINX 将等待一个小时(3600 秒)让它的上游返回一些东西。

于 2017-09-13T19:51:32.520 回答
53

您应该始终避免增加超时,我怀疑您的后端服务器响应时间无论如何都是这里的问题。

我通过清除连接保持活动标志并根据此处的答案指定 http 版本来解决此问题: https ://stackoverflow.com/a/36589120/479632

server {
    location / {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;

        # these two lines here
        proxy_http_version 1.1;
        proxy_set_header Connection "";

        proxy_pass http://localhost:5000;
    }
}

不幸的是,我无法解释为什么这是有效的,也无法从链接的答案中提到的文档中破译它,所以如果有人有解释,我很想听听。

于 2016-04-13T05:17:41.703 回答
44

首先通过查阅 nginx 错误日志文件找出哪个上游正在变慢,并在我的情况下相应地调整读取时间,它是 fastCGI

2017/09/27 13:34:03 [error] 16559#16559: *14381 upstream timed out (110: Connection timed out) while reading response header from upstream, client:xxxxxxxxxxxxxxxxxxxxxxxxx", upstream: "fastcgi://unix:/var/run/php/php5.6-fpm.sock", host: "xxxxxxxxxxxxxxx", referrer: "xxxxxxxxxxxxxxxxxxxx"

所以我必须在我的服务器配置中调整 fastcgi_read_timeout

 location ~ \.php$ {
     fastcgi_read_timeout 240;
     ...
 }

见:原帖

于 2017-09-27T14:19:49.337 回答
17

在您的情况下,它有助于对代理进行一些优化,或者您可以使用“#time out settings”

location / 
{        

  # time out settings
  proxy_connect_timeout 159s;
  proxy_send_timeout   600;
  proxy_read_timeout   600;
  proxy_buffer_size    64k;
  proxy_buffers     16 32k;
  proxy_busy_buffers_size 64k;
  proxy_temp_file_write_size 64k;
  proxy_pass_header Set-Cookie;
  proxy_redirect     off;
  proxy_hide_header  Vary;
  proxy_set_header   Accept-Encoding '';
  proxy_ignore_headers Cache-Control Expires;
  proxy_set_header   Referer $http_referer;
  proxy_set_header   Host   $host;
  proxy_set_header   Cookie $http_cookie;
  proxy_set_header   X-Real-IP  $remote_addr;
  proxy_set_header X-Forwarded-Host $host;
  proxy_set_header X-Forwarded-Server $host;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
于 2013-12-19T10:13:25.887 回答
15

我建议查看error_logs,特别是上游部分,它显示正在超时的特定上游。

然后在此基础上可以调整proxy_read_timeout,fastcgi_read_timeoutuwsgi_read_timeout

还要确保您的配置已加载。

更多细节在这里Nginx 上游超时(为什么以及如何修复)

于 2017-04-22T17:36:29.537 回答
11

我认为这个错误可能由于各种原因而发生,但它可能特定于您正在使用的模块。例如,我使用 uwsgi 模块看到了这一点,因此必须设置“uwsgi_read_timeout”。

于 2013-10-10T10:50:27.453 回答
9

正如许多其他人在这里指出的那样,增加 NGINX 的超时设置可以解决您的问题。

但是,增加超时设置可能不像许多这些答案所暗示的那样简单。正如这些线程中的几乎每个人所建议的那样,我自己也遇到了这个问题,并试图在/etc/nginx/nginx.conf文件中更改我的超时设置。这对我一点帮助都没有。NGINX 的超时设置没有明显变化。现在,几个小时后,我终于设法解决了这个问题。

解决方案在这个论坛帖子中,它说你应该把你的超时设置放在/etc/nginx/conf.d/timeout.conf中(如果这个文件不存在,你应该创建它)。我使用了与线程中建议的相同的设置:

proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
于 2019-02-09T09:54:00.700 回答
2

我遇到了同样的问题,结果是 Rails 控制器中的“每天”错误。我不知道为什么,但是在生产中,puma 一次又一次地运行错误,导致消息:

从上游读取响应标头时上游超时(110:连接超时)

可能是因为 Nginx 试图一次又一次地从 puma 获取数据。有趣的是,即使我在控制器中调用不同的操作,错误也会导致超时消息,因此,一个拼写错误会阻止所有应用程序。

检查您的 log/puma.stderr.log 文件,看看是否是这种情况。

于 2016-12-26T19:28:16.923 回答
2

另请检查keepalive_timeout上游服务器的。

我遇到了类似的问题:随机 502,Connection reset by peernginx 日志中出现错误,发生在服务器负载过重时。最终发现它是由 nginx' 和上游(在我的例子中是 gunicorn)keepalive_timeout值之间的不匹配引起的。Nginx 在 75s 和上游只有几秒钟。这导致上游有时会超时并断开连接,而 nginx 不明白为什么。

提高上游服务器值以匹配 nginx 的值解决了这个问题。

于 2021-07-09T15:29:19.423 回答
0

从我们这边来看,它使用的是带有代理缓存的 spdy。当缓存过期时,我们会收到此错误,直到缓存已更新。

于 2014-06-18T21:26:22.267 回答
0

对于proxy_upstream超时,我尝试了上述设置,但这些都不起作用。

设置resolver_timeout对我有用,因为知道生成上游超时消息需要 30 秒。例如me.atwibble.com 无法解析(110:操作超时)

http://nginx.org/en/docs/http/ngx_http_core_module.html#resolver_timeout

于 2019-11-25T13:44:31.757 回答
0

如果您在 Windows 10 上使用 wsl2,请通过以下命令检查您的版本:

wsl -l -v

您应该在版本下看到 2。如果不这样做,则需要安装wsl_update_x64

于 2022-01-22T06:25:12.703 回答
0

我们在保存内容(自定义内容类型)时遇到问题,给出超时错误。通过添加上述所有超时、http 客户端配置为 600 秒并将 php 进程的内存增加到 3gb 来解决此问题。

于 2021-12-10T05:44:24.833 回答
-1

希望它可以帮助某人:我遇到了这个错误,原因是对 phpfpm 日志文件夹的权限错误,在更改它以便 phpfpm 可以写入它之后,一切都很好。

于 2019-01-03T01:08:19.443 回答
-2

new 向 location 或 nginx.conf 添加一行配置,例如:proxy_read_timeout 900s;

于 2021-03-19T10:57:34.497 回答