apache socket error

Acoon

Verified User
Joined
Mar 7, 2012
Messages
11
Hi,

I've just installed Directadmin on a new Centos7 server. I used the standard settings with apache 2.4, php5.6 etc.

However, webmail does not seem to work. I get this error in httpd log.

Code:
[Thu Sep 25 21:04:47.266762 2014] [proxy:error] [pid 9390:tid 140571653957376] (2)No such file or directory: AH02454: FCGI: attempt to connect to Unix domain socket /usr/local/php56/sockets/webapps.sock (php-fpm56.webapps) failed
[Thu Sep 25 21:04:47.266916 2014] [proxy:error] [pid 9390:tid 140571653957376] AH00959: ap_proxy_connect_backend disabling worker for (php-fpm56.webapps) for 60s
[Thu Sep 25 21:04:47.266938 2014] [proxy_fcgi:error] [pid 9390:tid 140571653957376] [client 83.92.100.109:51756] AH01079: failed to make connection to backend: httpd-UDS


Any idea what to do?

Br,
Thomas
 
Does "systemctl restart php-fpm56.service" help? If not, do you see more files listed in "/usr/local/php56/sockets/" directory? It would be great to see the output of the following command too:
Code:
grep 'listen' /usr/local/php56/etc/php-fpm.conf
 
same issue for me.

Code:
# grep 'listen' /usr/local/php56/etc/php-fpm.conf
listen = /usr/local/php56/sockets/$pool.sock
listen.owner = $pool
listen.group = apache
listen.mode = 660
 
same issue here:

Code:
grep 'listen' /usr/local/php53/etc/php-fpm.conf
listen = /usr/local/php53/sockets/$pool.sock
listen.owner = $pool
listen.group = apache
listen.mode = 660
 
May you check:
Code:
ps auxfw | grep php-fpm

And see if the following solves the problem:
Code:
systemctl restart php-fpm56.service
 
May you check:

And see if the following solves the problem:
Code:
systemctl restart php-fpm56.service

Code:
Failed to issue method call: Unit php-fpm56.service failed to load: No such file or directory.
 
Back
Top