NGINX *7060 上游超时(110:连接超时)
Posted
技术标签:
【中文标题】NGINX *7060 上游超时(110:连接超时)【英文标题】:NGINX *7060 upstream timed out (110: Connection timed out) 【发布时间】:2018-01-31 01:47:18 【问题描述】:我今天在 Vutr 上使用 php7 使用 nginx 时遇到了这个错误:
2017/08/22 07:46:09 [错误] 19191#19191: *7060 上游超时 (110:连接超时)同时读取响应标头 上游,客户端:111.11.11.111,服务器:somedomain.com,请求:“GET /com$
我对服务器进行了硬重置,现在一切正常。但它是什么,为什么会发生,会不会再次发生?
这是我的 nginx.conf:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events
worker_connections 768;
# multi_accept on;
http
##
# Basic Settings
##
#custom added 22.08.2017
proxy_read_timeout 300;
#end custom
client_max_body_size 800m;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json
application/javascript text/xml application/xml appli$
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
【问题讨论】:
所以这种情况一直在发生?实际上在这种情况下,您应该记录系统参数。像htop,空闲内存,打开文件等。现在这个问题已经消失了,很难说。下次发生这种情况时准备收集事实 这是第一次发生 【参考方案1】:终于找到问题了!
我同时有太多进程。
问题出在 php-fpm 设置中。
所以我在 php 日志中遇到了这个错误: (所以如果你有同样的问题检查 php 日志)
我在网上找到了这个article。
添加后更改我的 www.conf 文件:
pm.max_children = 40
然后我重新启动php-fpm:
systemctl restart php7.0-fpm.service
【讨论】:
以上是关于NGINX *7060 上游超时(110:连接超时)的主要内容,如果未能解决你的问题,请参考以下文章
*10 上游超时(110:连接超时),同时使用 uwsgi 从上游读取响应头