Connect to demain socket failed

Pzz

Verified User
Joined
May 20, 2013
Messages
138
Location
The Hague area, The Netherlands
Hi,

I guess my vHostfile is somehow corrupt.

It's my first try to get a domain working with PHP 7.3

Code:
[Mon Mar 11 17:35:32.435472 2019] [proxy:error] [pid 30730:tid 139640532608768] (2)No such file or directory: AH02454: FCGI: attempt to connect to Unix domain socket /usr/local/php73/sockets/********.sock (*) failed

Is there something I need to adjus manually to get this working?

A piece of my httpd.conf:
Code:
<Directory "/home/geertjan/public_html">
        <FilesMatch "\.(inc|php|phtml|phps|php73)$">
            AddHandler "proxy:unix:/usr/local/php73/sockets/********.sock|fcgi://localhost" .inc .php .phtml .php73
        </FilesMatch> 
    <IfModule mod_fcgid.c>
        SuexecUserGroup ******** ********
    </IfModule>
</Directory>
 
Syntax error also

My configuration check op page /admin/custom-httpd/********/php-fpm/7.3/custom1

gives a:
Code:
sh: /usr/local/php73/sbin/php-fpm73: No such file or directory

Is PHP not correct installed?
 
Hello Geert-Jan,

Did you install PHP 7.3 with Directadmin?

Code:
cd /usr/local/directadmin/custombuild/
./build options | grep PHP[/COLOR][COLOR=#333333]


Is it actually running?

Code:
[/COLOR]ps aux | grep php-fpm

Do you have anything under the directory?

Code:
ls -la /usr/local/php73/sockets/

Anyway you might try to rebuild PHP once again:

Code:
[COLOR=#333333]cd /usr/local/directadmin/custombuild/[/COLOR]
[COLOR=#333333]./build update
./build php

and see whether or not it helps. Just make sure PHP 7.3 is enabled in options.conf
 
Back
Top