自动监控并重启服务supervise

创建服务所在目录

mkdir test
cd test

more run 
#!/bin/bash
./test

more test.c
#include 
#include 
#include 

int main() {
        int ix = 0;
        while (1) {
                printf("%d\n", ix);
                sleep(1);
                ix += 1;
        }
        return 0;
}

cd ..
nohup supervise test &

这样就可以守护test进程了,确保test服务被kill掉后自动重启。

你可能感兴趣的:(Linux)