Kill process after a given time bash?

后端 未结 5 1629
被撕碎了的回忆
被撕碎了的回忆 2021-02-01 03:23

I have a script that tries to make a DB connection using another program and the timeout(2.5min) of the program is to long. I want to add this functionality to the script.

相关标签:
5条回答
  • 2021-02-01 03:41

    There's a GNU coreutils utility called timeout: http://www.gnu.org/s/coreutils/manual/html_node/timeout-invocation.html

    If you have it on your platform, you could do:

    timeout 5 CONNECT_TO_DB
    if [ $? -eq 124 ]; then
        # Timeout occurred
    else
        # No hang
    fi
    
    0 讨论(0)
  • 2021-02-01 03:48

    I found this bash script timeout.sh by Anthony Thyssen (his web). Looks good.

    0 讨论(0)
  • 2021-02-01 03:49

    I don't know if it's identical but I did fix a similar issue a few years ago. However I'm a programmer, not a Unix-like sysadmin so take the following with a grain of salt because my Bash-fu may not be that strong...

    Basically I did fork, fork and fork : )

    Out of memory After founding back my old code (which I amazingly still use daily) because my memory wasn't good enough, in Bash it worked a bit like this:

    commandThatMayHang.sh 2 > /dev/null 2>&1 &    # notice that last '&', we're forking
    MAYBE_HUNG_PID=$!
    sleepAndMaybeKill.sh $MAYBE_HUNG_PID 2 > /dev/null 2>&1 &   # we're forking again
    SLEEP_AND_MAYBE_KILL_PID=$!   
    wait $MAYBE_HUNG_PID > /dev/null 2>&1
    if [ $? -eq 0 ]
        # commandThatMayHand.sh did not hang, fine, no need to monitor it anymore
        kill -9 $SLEEP_AND_MAYBE_KILL 2> /dev/null 2>&1
    fi
    

    where sleepAndMaybeKill.sh sleeps the amount of time you want and then kills commandThatMayHand.sh.

    So basically the two scenario are:

    1. your command exits fine (before your 5 seconds timeout or whatever) and so the wait stop as soon as your command exits fine (and kills the "killer" because it's not needed anymore

    2. the command locks up, the killer ends up killing the command

    In any case you're guaranteed to either succeed as soon as the command is done or to fail after the timeout.

    0 讨论(0)
  • 2021-02-01 03:56

    Do you mean you don't want the error message printed if the process isn't still running? Then you could just redirect stderr: kill $pid 2>/dev/null.

    You could also check whether the process is still running:

    if ps -p $pid >/dev/null; then kill $pid; fi
    
    0 讨论(0)
  • 2021-02-01 04:05

    You can set a timeout after 2 hours and restart your javaScriptThatStalls 100 times this way in a loop

    seq 100|xargs -II timeout $((2 * 60 * 60)) javaScriptThatStalls
    
    0 讨论(0)
提交回复
热议问题