ps -ef|grep "php-fpm: master process"|grep -v grep|awk '{print $2}'|xargs kill -USR2优点: 简单,无需写脚本。无需依赖其他工具缺点: 不能区分池子,不够精准
分类:
Web程序 时间:
2015-04-07 17:18:50
阅读次数:
124
Phalcon简介由于半路出家的缘故,没用过几个PHP框架,第一个了解的框架是公司自己的,然后又试着用了Yii,CI。在读了CSDN在某度的高排名翻译文章(PHP开发框架流行度排名:Laravel居首)后,看了Laravel的皮毛。不得不说Laravel的文档真是漂亮,但是作为一个后台程序开发者,总...
分类:
Web程序 时间:
2015-04-04 16:39:13
阅读次数:
208
Centos6源安装最新的nginxphpmysql(iptablesselinux事先关闭)1、Php5.6安装remi源http://rpms.famillecollet.com/yuminstallhttp://rpms.famillecollet.com/enterprise/remi-release-6.rpm此操作也会自动安装epel源,(此源可安装mysql5.5php5.4php5.6php5.5)然后在/etc/yum.repo..
分类:
数据库 时间:
2015-04-02 16:42:07
阅读次数:
203
释放内存:syncecho 3 > /proc/sys/vm/drop_cachesLinux查看Dell服务器型号命令:dmidecode | grep "Product Name"启动nginx,php/usr/local/webserver/php/sbin/php-fpm start/usr...
分类:
系统相关 时间:
2015-04-01 12:48:21
阅读次数:
261
参考http://syre.blogbus.com/logs/20092011.htmlhttp://www.mike.org.cn/articles/what-is-cgi-fastcgi-php-fpm-spawn-fcgi/http://www.larro.cn/?p=35nginx php ...
分类:
Web程序 时间:
2015-04-01 10:52:06
阅读次数:
198
fastcgiphp-fpm端口对外开放外部提交的命令可以执行https://github.com/adoy/PHP-FastCGI-Clientlocal/php/bin/phpfcgiget.php222.134.66.98:9000/etc/hosts
分类:
Web程序 时间:
2015-03-31 20:20:10
阅读次数:
220
1、CPU使用率监控sar -P ALL 1 100输出结果如下:CPU %user %nice %system %iowait %steal %idleall 85.54 0.00 5.69 0.00 0.00 ...
分类:
Web程序 时间:
2015-03-30 16:04:38
阅读次数:
376
一般来说php-cgi进程数不够用、php执行时间长(mysql慢)、或者是php-cgi进程死掉,都会出现502错误;Nginx 504 Gateway Time-out则是与nginx.conf的设置有关;1.502 和 php-fpm.conf1.request_terminate_timeo...
分类:
系统相关 时间:
2015-03-28 14:08:35
阅读次数:
182
functionis_HTTPS(){
if(!isset($_SERVER[‘HTTPS‘]))returnFALSE;
if($_SERVER[‘HTTPS‘]===1){//Apache
returnTRUE;
}elseif($_SERVER[‘HTTPS‘]===‘on‘){//IIS
returnTRUE;
}elseif($_SERVER[‘SERVER_PORT‘]==443){//其他
returnTRUE;
}
returnFALSE;
}也有这样用的:if(strtou..
分类:
Web程序 时间:
2015-03-18 18:28:48
阅读次数:
140
------------------安装Nginx-------------------安装编译工具与依赖环境#yuminstallgccgcc-c++makepcre-developenssl-develzlib-devel-y#useraddnginx//创建Nginx用户#tar-xvfnginx-1.6.2.tar.gz//解压nginx源码包#cdnginx-1.6.2#./configure\//配置nginx编译参数>--prefix..
分类:
Web程序 时间:
2015-03-16 13:03:26
阅读次数:
283