zoukankan      html  css  js  c++  java
  • Nginx Upstream timed out (110: Connection timed out)

    Nginx Upstream timed out (110: Connection timed out) – 运维生存时间 http://www.ttlsa.com/nginx/nginx-upstream-timed-out-110-connection-timed-out/

    Nginx错误日志中,有大量的下列信息:

    Upstream timed out (110: Connection timed out) while reading response header from upstream

    这种情况主要在厦门两种情况下发生:

    1. nginx proxy

    需要适当的调整proxy_read_timeout值。

    2. Nginx作为php-fpm等等其他的有上游服务

    php-fpm作为nginx的upstream  php-fpm作为nginx的上游服务】

    在这种情况下,适当的调整fastcgi_read_timeout选项值

    Module ngx_http_core_module https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout

    Syntax: keepalive_timeout timeout [header_timeout];
    Default:
    keepalive_timeout 75s;
    Context: httpserverlocation

    The first parameter sets a timeout during which a keep-alive client connection will stay open on the server side. The zero value disables keep-alive client connections. The optional second parameter sets a value in the “Keep-Alive: timeout=time” response header field. Two parameters may differ.

    The “Keep-Alive: timeout=time” header field is recognized by Mozilla and Konqueror. MSIE closes keep-alive connections by itself in about 60 seconds.

  • 相关阅读:
    人民币大小写转换
    清除vs中的最近打开的项目列表
    OWC绘图控件研究
    Fat32的磁盘格式转成Ntfs磁盘格式
    Host "localhost " is not allowed to connect to mysql server解决方法
    OWC中组合图的开发(柱状图+折线图)
    mysql 1251错误解决方法
    使用OWC做统计图图标样式
    完全卸载MYSQL
    nginx 伪静态
  • 原文地址:https://www.cnblogs.com/rsapaper/p/10220189.html
Copyright © 2011-2022 走看看