Apache2 + FCGI + PHP5 not creating sockets / pools
- by CodyRo
I have a pretty vanilla setup with Apache2, FastCGI setup as DSO and serving PHP through an external CGI script that sets the max children / serves the request to PHP.
The issue is FastCGI doesn't appear to be creating the PHP sockets / pooling them so each request calls the php-cgi binary, then dies off .. effectively making the reason I want to use FastCGI moot.
The only configuration directives I have are:
AddHandler php5-fastcgi .php
Action php5-fastcgi /cgi-bin/fcgi.cgi
FastCgiIpcDir /usr/local/apache2/fastcgi
The dyanmic/ directory is getting created as anticipated, but there are no sockets in there. Permissions are indeed correct.
Any help would be greatly appreciated, thanks!