在后台运行 php

在后台运行 php

我使用 SSH 连接到专用服务器。接下来,我尝试在 php -d max_execution_time[=0] -f index.php 中执行。我怎样才能关闭(甚至关机)本地计算机,但远程服务器上的 php 脚本应继续运行?

答案1

或者用屏幕http://en.wikipedia.org/wiki/GNU_Screen

screen -A -m -d -S whatever ./yourphpscriptlauncher.sh

酷炫+,具有:

screen -r whatever

您又回到了您的脚本;)

答案2

像这样运行你的 php 脚本:ssh user@machine "nohup php -d max_execution_time[=0] -f index.php &"

答案3

相关内容