How do I write a bash script to restart a process if it dies?

后端 未结 8 2263
-上瘾入骨i
-上瘾入骨i 2020-11-22 02:47

I have a python script that\'ll be checking a queue and performing an action on each item:

# checkqueue.py
while True:
  check_queue()
  do_something()
         


        
8条回答
  •  清歌不尽
    2020-11-22 03:32

    Have a look at monit (http://mmonit.com/monit/). It handles start, stop and restart of your script and can do health checks plus restarts if necessary.

    Or do a simple script:

    while true
    do
    /your/script
    sleep 1
    done
    

提交回复
热议问题