cron 作业 运行 在什么进程下?
What process does a cron job run under?
在带有 Raspbian 的 Raspberry Pi 2 上,我发现我可以使用 crontab -e
然后在 table 中添加一行 @reboot sudo /root/.nvm/v0.10.26/bin/node /root/tweetmonkey-raspi &
在引导时启动节点进程。
我不知道如何快速终止该进程。我在 ps -e
中没有看到它。 运行 是什么流程?
Cron 作业由 cron
或 crond
启动,这将产生 sh
到 运行 您的命令。但是,您的命令在后台分叉到 运行,然后完成执行,因此 node
进程重新成为根进程 init
.
在带有 Raspbian 的 Raspberry Pi 2 上,我发现我可以使用 crontab -e
然后在 table 中添加一行 @reboot sudo /root/.nvm/v0.10.26/bin/node /root/tweetmonkey-raspi &
在引导时启动节点进程。
我不知道如何快速终止该进程。我在 ps -e
中没有看到它。 运行 是什么流程?
Cron 作业由 cron
或 crond
启动,这将产生 sh
到 运行 您的命令。但是,您的命令在后台分叉到 运行,然后完成执行,因此 node
进程重新成为根进程 init
.