我正在尝试使用 Deployer 的CacheTool 配方。
我在配置 cachetool 时遇到问题。
使用 WHM / cPanel 和 PHP 版本是 PHP 7.4 ( ea-php74
)。
set('cachetool', '/var/cpanel/php-fpm/<username>/sock');
导致以下错误:
In AbstractCommand.php line 39:
Extension `Zend OPcache` is not loaded
opcache:reset
为域使用特定的套接字文件:
set('cachetool', '/opt/cpanel/ea-php74/root/usr/var/run/php-fpm/<hashed-domain>.sock');
结果是
In FastCGI.php line 114:
Error: File not found.
opcache:reset
尝试使用 IP:
set('cachetool', '127.0.0.1:9000');
返回
================
In FastCGI.php line 143:
FastCGI error: Unable to connect to FastCGI application: Connection refused (127.0.0.1:9000)
In Socket.php line 320:
Unable to connect to FastCGI application: Connection refused
In Socket.php line 270:
stream_socket_client(): unable to connect to tcp://127.0.0.1:9000 (Connection refused)
opcache:reset
我对所有配置文件/可能性有点迷茫,谁能帮忙?谢谢!