Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有需要在后台启动时运行的程序,到目前为止,我在 rc.local 中有它,如下所示:
sudo ./simple_program &
但是,如果程序崩溃,这并没有考虑到。我需要它,以便每当程序崩溃时,它会再次重新启动。
我认为方法是编写一个 bash 脚本并在 rc.local 中运行它,其中 bash 脚本调用 simple_program 并在需要时重新运行它。但是,我不太确定在这里做什么。有人可以给我一个模板吗?
尝试使用monit或daemontools,它们专门用于监督其他进程