重启php-fpm主进程后执行php脚本

时间:2019-05-31 04:44:08

标签: php fpm

说我有一个脚本来填充php apc缓存,当php重新启动时,缓存为空。

是否可以创建一种机制,以在主php-fpm进程启动时自动运行某种脚本?

2 个答案:

答案 0 :(得分:3)

打开php-fpm

vim /etc/init.d/php-fpm

在文件中找到启动功能,在末尾添加命令。

start () {
    ...
    # Your commands here
}

保存并重新启动php-fpm

答案 1 :(得分:1)

我有一篇文章供您阅读,请Link

为您提供帮助

通过CMD打开php-frm

乌班图 sudo gedit /etc/init.d/php-fpm

您将代码置于以下功能下。

function start {
   /* 
     Your code here
   */
}