2017年5月19日

502的几种解决方案

摘要: 1.FastCGI进程是否已经启动2.FastCGI worker进程数是否不够运行 netstat -anpo | grep “php-cgi” | wc -l 判断是否接近FastCGI进程,接近配置文件中设置的数值,表明worker进程数设置太少3.FastCGI执行时间过长根据实际情况调高以 阅读全文

posted @ 2017-05-19 17:42 dongruiha 阅读(499) 评论(0) 推荐(0) 编辑

mysql 数据表读锁机制详解

摘要: 转自:http://www.cnblogs.com/huangye-dream/archive/2013/07/06/3174725.html 为了给高并发情况下的mysql进行更好的优化,有必要了解一下mysql查询更新时的锁表机制。一、概述MySQL有三种锁的级别:页级、表级、行级。MyISAM 阅读全文

posted @ 2017-05-19 16:19 dongruiha 阅读(322) 评论(0) 推荐(0) 编辑

Nginx中FastCGI配置优化

摘要: 转自 http://www.cnblogs.com/yezhaohui/p/4377662.html 阅读全文

posted @ 2017-05-19 15:15 dongruiha 阅读(247) 评论(0) 推荐(0) 编辑

Nginx+FastCGI到底是谁影响超时时间

摘要: 需求: 一个php程序要跑一段时间,但是时间不确定。 问题: 当该php程序运行超过一段时间被强制断开连接。 PHP本身超时处理 在 php.ini 中,有一个参数 max_execution_time 可以设置 PHP 脚本的最大执行时间,但是,在 php-cgi(php-fpm) 中,该参数不会 阅读全文

posted @ 2017-05-19 15:11 dongruiha 阅读(12393) 评论(0) 推荐(0) 编辑

PHP-PHP-FPM的max_children一些误区

摘要: 转自 http://www.cnblogs.com/JohnABC/p/6230262.html 502排查: 1.FastCGI 进程数是否够用 2.Nginx等待php执行时间fastcgi_connect_timeout 0;fastcgi_send_timeout 0;fastcgi_rea 阅读全文

posted @ 2017-05-19 12:24 dongruiha 阅读(2092) 评论(0) 推荐(0) 编辑

phpfpm开启pm.status_path配置,查看fpm状态参数

摘要: php-fpm配置 pm.status_path = /phpfpm_status nginx配置 server { root /data/www; listen 80; server_name 10.10.20.3; index index.html index.htm index.php; #测 阅读全文

posted @ 2017-05-19 12:18 dongruiha 阅读(1655) 评论(0) 推荐(0) 编辑

lumen路由配置nginx

摘要: nginx配置文件中添加: set $root_path '/data/www/m.domain.com/public'; root $root_path; location / { try_files $uri $uri/ /index.php?$query_string; } 框架目录下的rou 阅读全文

posted @ 2017-05-19 09:32 dongruiha 阅读(3411) 评论(0) 推荐(0) 编辑

导航