Linux 进程退出后自动启动

Posted zengjf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 进程退出后自动启动相关的知识,希望对你有一定的参考价值。

/**********************************************************************
 *                    Linux 进程退出后自动启动
 * 说明:
 *     在系统中,我们有时候会希望后台程序能够一直运行,即使程序出错了,
 * 也是希望程序能够自动启动,并继续运行。
 *
 *                                  2016-12-10 深圳 南山平山村 曾剑锋
 *********************************************************************/

一、参考文档:
    How to automatically restart a linux background process if it fails?
        http://superuser.com/questions/507576/how-to-automatically-restart-a-linux-background-process-if-it-fails

二、解决办法:
    1. 如参考文档中的说明,分三种情况:
        1. BusyBox init:在/etc/inittab中添加:
            ::respawn:/bin/myprocess
        2. Linux "System V" init:在/etc/inittab中添加:
            myprocess:2345:respawn:/bin/myprocess
        3. systemd:
            1. 在/etc/systemd/system/myprocess.service中添加:
                [Unit]
                Description=My Process

                [Service]
                ExecStart=/bin/myprocess
                Restart=always

                [Install]
                WantedBy=multi-user.target
            2. systemctl enable myprocess.service
    2. 详情请参考:
        http://buildroot.uclibc.org/downloads/manual/manual.html#_init_system
            3. systemctl start myprocess.service

 

以上是关于Linux 进程退出后自动启动的主要内容,如果未能解决你的问题,请参考以下文章

linux 用户进程结束后 malloc申请的内存会自动释放吗,进程退出后malloc的内存是否会被释放?

linux c 退出进程的代码

linux c 退出进程的代码

linux中nohup 与 & 的区别

Linux shell中运行命令后加上字符“&”的作用

nohup执行后退出终端为何进程消失?急