zabbix添加Calculated items后保存頁面成空白
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、連江網(wǎng)絡(luò)推廣、重慶小程序開發(fā)、連江網(wǎng)絡(luò)營銷、連江企業(yè)策劃、連江品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供連江建站搭建服務(wù),24小時服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
Nginx報以下錯誤
2014/09/23 10:10:23 [error] 27617#0: *111642 readv() failed (104: Connection reset by peer) while reading upstream, client: xxxxxx, server: xxxxx, request: "POST /disc_prototypes.php HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "xxxxx", referrer: "http://xxxxxx/disc_prototypes.php?parent_discoveryid=24117&form=Create+item+prototype"
解決辦法
這個是由于提交頁面后PHP-FPM處理時間過長造成的。需要在php-fpm.conf中設(shè)置request_terminate_timeout和php.ini中設(shè)置max_execution_time兩個參數(shù)的值
設(shè)置單個PHP腳本最大執(zhí)行時間
max_execution_time = 300s
設(shè)置PHP-FPM工作進(jìn)程處理單個請求的超時時間
request_terminate_timeout = 600s
重新加載PHP-FPM后就可以保存新增的item了