The FastCGI process exceeded configured activity timeout.Php-cgi.exe-FastCGI 进程意外退出-如何解决. C:\php\php-cgi. exe- The FastCGI process exited unexpectedly. FastCGI 够简单,它实际只是CGI以及一些扩展.FastCGI is simple because it is actually CGI with only a few extensions.这些进程由FastCGI 服务器管理,而不是web服务器。 These processes are owned by the FastCGI server, not the web server. 假设FastCGI 服务器可在localhost:9000上访问。 Suppose the FastCGI server is accessible on localhost: 9000.
C:\php_55\php-cgi.exe-FastCGI 进程意外退出. C:\php\php-cgi. exe- The FastCGI process exited unexpectedly. 假设FastCGI 服务器可以在localhost:9000上访问。 Suppose the FastCGI server is accessible on localhost: 9000. 第二步是告诉Apache为符合一定模式的URL使用FastCGI 。 The second step is telling Apache to use FastCGI for URLs that match a certain pattern. 此功能适用于PHP-FPM(PHP5.3及以上)和FastCGI (PHP5.x版本)。 This feature works with PHP-FPM(starting with PHP 5.3) and FastCGI (all PHP 5.x versions). 如果你改变了站点上任何的python代码,你需要告知FastCGI 。 If you change any Python code on your site, you will need to tell FastCGI the code has changed. WEB服务器接收到一个需要FastCGI 应用程序处理的客户端请求。 The web server receives arequest that is supposed to be handled by the FastCGI application. 如果你使用的是PHP的FastCGI IIS,你应该使用非线程安全(NTS)版本的PHP。 If you are using PHP as FastCGI with IIS you should use the Non- Thread Safe( NTS) versions of PHP. 如果FastCGI 程序没有在预期时间内接收连接,则请求失败。 If the FastCGI application does not accept the connection within due time, the request fails.这些环境变量由FastCGI 模块在FastCGI 进程的开始过程中设置。 These environment variables are set by the FastCGI module during the start time of a FastCGI process. PHP的FastCGI 使你的所有php应用软件通过mod_fastci运行,而不是mod_phpsusexec。 FastCGI for PHP makes all your PHP applications run through mod_fastcgi instead of mod_phpsusexec.WEB服务器和FastCGI 应用程序之间交互流程通常是这样的:. The typical conversation between the web server and the FastCGI application looks like this:.与为每个请求创建一个新的进程不同,FastCGI 使用持续的进程来处理一连串的请求。 Instead of creating a new process for each request, FastCGI uses persistent processes to handle a series of requests. X(或者FastCGI ,SCGI,uWSGI,等等.-取决于你目前正在使用的协议)。 X(or FastCGI , SCGI, uWSGI, etc.- whatever protocol you are currently using) for communication with backend servers. PhusionPassenger还没有发布(在此很久才发布的)而Mongrel比FastCGI 早了很多很多年。 Phusion Passenger wasn't released yet(more on this later), and Mongrel was light-years ahead of FastCGI . PHP-FPM是FastCGI 的高级版本,很大程度上为高负载的web应用程序提供了好处。 The PHP-FPM is an advanced version of FastCGI which offers significant benefits for highly loaded web applications. PHP-FPM是Web服务器使用PHP的一种最新方式,也是PHPFastCGI 的另外一种实现。 PHP-FPM, one of the newest way to use PHP in conjunction with a web server, is an alternative PHP FastCGI implementation. 对FastCGI 协议的支持提供了在进程外配置中使用第三方技术的有效方式。 Support for the FastCGI protocol provides an efficient way to use third-party technologies in an out-of-process configuration. 与为每个请求创建一个新的进程不同,FastCGI 使用持续的进程来处理一连串的请求。 Unlike CGI, which creates a separate process for each incoming request, FastCGI uses a single process to handle multiple requests. 本教程介绍了如何在Ubuntu13.04服务器上建立PHP5.3和PHP5.4来作为一个PHP-FPM和FastCGI 版本。 This tutorial shows how to build PHP 5.3 and PHP 5.4 as a PHP-FPM and a FastCGI version on an Ubuntu 13.04 server. FastCGI 是以客户机/服务器方式运行的,并且在很多情况下,你得自己去启动FastCGI 的服务进程。FastCGI operates on a client/server model, and in most cases you will be starting the FastCGI server process on your own.然后创建一小段Python脚本,告诉Apache您的Django项目的不同设置,并执行FastCGI 程序。 Then create a small Python script that informs Apache of the various settings for your Django project and executes the FastCGI program. 基本上,FastCGI 是一个在单一步骤中管理多重CGI请求的程序,为每个请求减少了许多程序指令。 Basically, FastCGI is a program that manages multiple CGI requests within a single process, saving many program instructions for each request. Nginx可用于将请求路由到运行使用各种框架和PHP等编程语言构建的应用程序的FastCGI 服务器。 Nginx can be used to route requests to FastCGI servers which run applications built with various frameworks and programming languages such as PHP. 你可以试着运行应用程序,Perfect工程中自带了一个http服务器,你可以用来运行fastCGI 模块并将其连接至Apache或NGINX。 You run their application, they have a http server themselves where you can run their fastCGI module and link that to Apache or NGINX. 为FastCGI ,uwsgi,SCGI,或memcached搭建负载均衡时,只要使用相应的fastcgi_pass,uwsgi_pass,scgi_pass,和memcached_pass指令。 When setting up load balancing for FastCGI , uwsgi, SCGI, memcached, or gRPC, use fastcgi pass, uwsgi pass, scgi pass, memcached pass, and grpc_pass directives respectively.
Display more examples
Results: 58 ,
Time: 0.0213