gpt4 book ai didi

python - nohup进程在Raspberry Pi机器中自动终止

转载 作者:太空宇宙 更新时间:2023-11-03 18:14:33 25 4
gpt4 key购买 nike

我有一个运行 Raspbian 操作系统的 Raspberry Pi。

通过 SSH 登录后,我通过 nohup 运行了一个 python 脚本:

nohup python3 start.py </dev/null >/dev/null &

然后我退出。 python 进程仍在运行。

但是两天或者几天之后,python进程就结束了。日志中没有错误。

谁能给我一些建议吗?

最佳答案

也尝试重定向stderr:

nohup python3 start.py </dev/null >/dev/null 2>&1 &

另外,我认为这并不是真正有帮助,但无论如何只需添加 disown 即可:

nohup python3 start.py </dev/null >/dev/null 2>&1 &
disown

关于python - nohup进程在Raspberry Pi机器中自动终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25215336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com