1

我正在尝试使用 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

我对所有配置文件/可能性有点迷茫,谁能帮忙?谢谢!

4

1 回答 1

1

定义--fcgi-chroot和/或--tmp-dir选项以使其工作。

来自 [自述文件][1]:

故障排除


[RuntimeException] 错误:无法打开主脚本:/dev/shm/cachetool-584743c678dbb.php(没有这样的文件或目录)状态:404 未找到内容类型:文本/html;charset=UTF-8 未指定输入文件。

这意味着 cachetool 无法写入来/dev/shm提供 cachetool 可以通过php cachetool.phar --tmp-dir=/writable/dir或配置写入的目录。

...

  • 要连接到 chrooted fastcgi 服务器,您需要设置 --fcgi-chroot--tmp-dir参数
 php cachetool.phar opcache:status --fcgi=/var/run/php5-fpm.sock --fcgi-chroot=/path/to/chroot --tmp-dir=/path/to/chroot/tmp
于 2020-07-29T13:30:19.593 回答