如何允许后台进程在会话终止后继续存在?

时间:2017-10-20 06:36:29

标签: php linux session putty

所以我使用Putty会话在后台运行脚本。

我的脚本可以通过

找到

cd /var/www/listingapp

然后我将运行命令

php /var/www/listingapp/public/index.php batch/GetPrefecture init > /dev/null &

所以我希望脚本能在后台运行,但在我关闭putty CLI并尝试重新打开它之后,输入命令时再也找不到该进程了

ps aux | grep /var/www/listingapp

所以这意味着它停止了。当会话终止时,如何让它在后台运行?

1 个答案:

答案 0 :(得分:1)

nohup php /var/www/listingapp/public/index.php batch/GetPrefecture init &