所需安装包:httpd-2.4.10.tar.gz、mysql-5.6.21-linux-glibc2.5-x86_64.tar.gz、php-5.4.34.tar.gz1、安装httpd#yuminstallpcre-devel#tarxfapr-1.5.1.tar.gz#./configure--prefix=/usr/local/apr#make#makeinstall#tarxfapr-util-1.5.4.tar.gz#./configure--prefix=/usr/loca..
分类:
其他好文 时间:
2015-05-21 06:48:06
阅读次数:
196
Web server(apache, nginx) 接受到一个php请求后要解析php文件, 怎么解析呢, web server是C语言写的, 所以需要一个协议, 一个php解释器, 也就是CGI.FastCGI是用来提高CGI性能的, 可以说是CGI的升级版. CGI每当一个请求过来都要开启一个进...
分类:
Web程序 时间:
2015-05-11 10:34:09
阅读次数:
138
本文不是自己所写,乃是别人的问答,用自己的话描述,担心悔掉原意。自己总结如下: 协议: CGI Fastcgi 程序/进程 php-cgi php-fpmcgi和Fastcgi,都是一种协议,后者是用来管理优化前者的一个协议。公司里面,cgi是定义...
分类:
Web程序 时间:
2015-05-06 14:56:59
阅读次数:
126
参考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
参考网上的描述,将网上的描述内容,整理进来:
首先,CGI是干嘛的?CGI是为了保证web server传递过来的数据是标准格式的,方便CGI程序的编写者。
web server(比如说nginx)只是内容的分发者。比如,如果请求/index.html,那么web server会去文件系统中找到这个文件,发送给浏览器,这里分发的是静态数据。好了,如果现在请求的是/inde...
分类:
Web程序 时间:
2015-02-02 19:55:50
阅读次数:
170
这两天需要在Ubuntu14.04上搭建nginx和php的环境,配置的过程中在fastcgi的问题上花了很多时间,网上的资料大多年久失修,于是决定将整个过程记录下来,分享给大家。...
分类:
Web程序 时间:
2014-12-10 21:16:37
阅读次数:
196
PHP: CGI,FASTCGI,php-fpm,mod_php,mod_cgi,mod_fcgid 解释...
分类:
Web程序 时间:
2014-11-22 10:39:30
阅读次数:
185
zabbix添加Calculateditems后保存页面成空白Nginx报以下错误2014/09/2310:10:23[error]27617#0:*111642readv()failed(104:Connectionresetbypeer)whilereadingupstream,client:xxxxxx,server:xxxxx,request:"POST/disc_prototypes.phpHTTP/1.1",upstream:"fastcgi://127.0.0.1:..
分类:
其他好文 时间:
2014-09-23 13:56:25
阅读次数:
257
在配置中加上location ~ .*\.(php|php5)?$ {fastcgi_pass 127.0.0.1:9000;fastcgi_read_timeout 700;fastcgi_index index.php;include fastcgi.conf;}
分类:
Web程序 时间:
2014-07-18 15:17:43
阅读次数:
335