ChinaUnix.net
相关文章推荐:

apache fastcgi perl

1. 安装apacheapache源代码解压缩: 一、编译和安装apache: # tar zxvf httpd-2.2.11.tar.gz # cd httpd-2.2.11 # ./configure # make # make install 默认安装在/usr/local/apache2中。 安装fcgi 将fcgi解压缩: # tar zxvf fcgi-2.4.0.tar.gz 编译和安装: # cd fcgi-2.4.0 # ./configure # make # make install 将必要的动态库拷贝到/usr/lib中(cgi程序将依赖这些库文件): # cp ./libfcgi/.libs/* /usr/lib/ 二、...

by zzxia - Linux文档专区 - 2009-03-17 14:57:53 阅读(859) 回复(0)

相关讨论

perl 是用来写 CGI 的。而 apache2 本身已经能正常执行 perl 的 CGI 程序。 mod_fastcgi 是用来提高 CGI 效率的。 那么 mod_perl2 还要来做什么?提高 CGI 效率??? :?: :?: :em17:

by xiaohua - BSD - 2003-12-14 11:28:52 阅读(974) 回复(0)

perl 是用来写 CGI 的。而 apache2 本身已经能正常执行 perl 的 CGI 程序。 mod_fastcgi 是用来提高 CGI 效率的。 那么 mod_perl2 还要来做什么?提高 CGI 效率??? :?: :?: :?:

by xiaohua - 服务器应用 - 2003-12-18 11:12:00 阅读(831) 回复(2)

nginx + fastcgi是php下最流行的一套环境了,那perl会不会也有fastcgi呢,当然有,今天来搭建下nginx下perlfastcgi.性能方面也不亚于php,但是现在web程序php的流行程度perl无法比拟了,性能再好也枉然,但是部分小功能可以考虑使用perlfastcgi来搞定.进入正题. 1. 准备软件环境:nginx:http://www.nginx.org perl:系统自带 fastcgi:http://www.cpan.org/modules/by-module/FCGI/ 1.1 nginx安装 nginx安装过无数次,这边不...

by hwlinux - Linux系统管理 - 2013-08-24 20:25:54 阅读(1895) 回复(4)

wget ftp://ftp.ncftp.com/ncftp/ncftp-3.2.2-src.tar.gz tar -zxvf ncftp-3.2.2-src.tar.gz cd ncftp-3.2.2 ./configure --prefix=/usr make;make install perl -MCPAN -e 'install FCGI' perl -MCPAN -e 'install Getopt::Long' perl -MCPAN -e 'install IO:All' perl -MCPAN -e 'install Socket' wget http://www.nginx.eu/nginx-fcgi/nginx-fcgi.txt mv nginx-fcgi.txt /usr/local/nginx/bin/nginx-fcgi chmod 777 /us...

by badb0y - Linux文档专区 - 2009-04-22 16:17:33 阅读(1199) 回复(0)

本帖最后由 scyzxp 于 2010-02-25 23:10 编辑 fastcgi 指引 * fastcgiAccessChecker * fastcgiAccessCheckerAuthoritative * fastcgiAuthenticator * fastcgiAuthenticatorAuthoritative * fastcgiAuthorizer * fastcgiAuthorizerAuthoritative * fastcgiConfig * fastcgiExternalServer * fastcgiIpcDir * fastcgiServer * fastcgiSuexec * 相關資訊 fastcgiAccessChecker ...

by scyzxp - 服务器应用 - 2010-02-25 23:09:24 阅读(2297) 回复(0)

apache启动和cgi程序的编译都没问题 但是运行的时候就出错 以下是一些信息 高手指点一下吧 winXP apache2.0.59 mod_fastcgi-2.4.2-AP20.dll httpd.conf [code] LoadModule fastcgi_module modules/mod_fastcgi-2.4.2-AP20.dll ... fastcgi.c> ScriptAlias /fcgi-bin/ "D:/Program Files/apache Group/apache2/fcgi-bin/" fastcgiServer fcgi-bin/echo.exe -processes 2 [/code] echo.c [code] ...

by bleem1998 - Web开发 - 2007-03-14 05:22:49 阅读(4163) 回复(2)

我在运行apache上的fastcgi程序(perl)的时候,从error_log里看到一个错误,导致fastcgi程序重启,浏览器上显示500 internel server error 以下是错误信息 [Tue May 9 16:19:23 2006] [error] [client 192.168.1.115] fastcgi: incomplete headers (0 bytes) received from server "/home/game/fcgi/index.fcgi" [Tue May 9 16:19:23 2006] [warn] fastcgi: server "/home/game/fcgi/index.fcgi" (pid 17246) terminated due to ...

by superisaac - 服务器应用 - 2006-05-12 14:59:53 阅读(2026) 回复(2)

新手 配置都按查询到的标准走的 RHEL5 nginx安装启动正确 默认静态页面显示正常 default.conf 里增加配置 # pass the perl scripts to fastcgi server listening on 127.0.0.1:9001 # location ~ \.cgi$ { # root html; fastcgi_pass 127.0.0.1:9001; fastcgi_index index.cgi; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include ...

by remark - Perl - 2012-04-03 22:46:45 阅读(1580) 回复(4)

rc.conf: perl_fcgi_enable="YES" perl_fcgi_pidfile="/var/run/perl-fcgi.pid" perl_fcgi_user="www" perl_fcgi_group="www" perl_fcgi_chdir="/" perl_fcgi_chroot="" perl_fcgi_socket="/tmp/perl-fcgi.sock" perl_fcgi_socketbacklog="100" perl_fcgi_socketmode="0777" perl_fcgi_children="2" perl_fcgi_childrentimeout="10" perl_fcgi_max_requests="10000" perl_fcgi_path_env="/bin:/usr/bin" /usr/local/etc/rc.d/p...

by 啊泰 - BSD - 2010-10-18 19:24:48 阅读(3306) 回复(4)

为了模拟fastcgi模块下的 503 做了以下操作: 修改配置文件/etc/apache2/mods-enabled/fcgid.conf 增加设置了以下变量: IPCCommTimeout 300 DefaultMaxClassProcessCount 1 DefaultMinClassProcessCount 1 然后通过wget,启动两个request,每个个request在server端会sleep 70秒钟,然后返回结果 由于是单进程模式,所以当一个request被处理时,由于DefaultMaxClassProcessCount被设置成 1, 另外一个request,在apache端排队...

by zjufuturefly - 服务器应用 - 2010-08-18 16:22:39 阅读(1970) 回复(0)