2017-08-22 77 views
0

今天我此錯誤與我的Vutr NGINX,與PHP7:NGINX * 7060上游超時(110:連接超時)

2017年8月22日7時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/*; 
} 
+1

因此,這是一貫發生?實際上在這種情況下,您應該記錄系統參數。像htop,空閒內存,打開的文件等等。現在這個問題已經消失了,這很難說。下一次準備在事件發生時收集事實 –

+0

這是它第一次發生 –

回答

0

最後,我發現這個問題!

我不得不在同一時間過多的進程。

的問題是在PHP-FPM設置。

所以這個錯誤,我在PHP日誌: (所以如果u有同樣的問題,檢查PHP日誌) enter image description here

在網絡上,我發現這個article

後,我加改變我www.conf文件:

pm.max_children = 40 

然後我重新啓動PHP-FPM:

systemctl restart php7.0-fpm.service 
相關問題