Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a java program that stops often due to errors which is logged in a .log file. What can be a simple shell script to detect a particular text in the last/latest line say

[INFO] Stream closed

and then run the following command

java -jar xyz.jar

This should keep on happening forever(possibly after every two minutes or so) because xyz.jar writes the log file.

The text stream closed can arrive a lot of times in the log file. I just want it to take an action when it comes in the last line.

share|improve this question
For what platform?! – Jean-François Corbett Sep 29 '11 at 8:43
I'm running this on an ubuntu server – R1234 Sep 29 '11 at 8:44
1  
Removed java tag, this applies to any program – michael667 Sep 29 '11 at 8:59

3 Answers

How about

while [[ true ]];
do
  sleep 120
  tail -1 logfile | grep -q "[INFO] Stream Closed"
  if [[ $? -eq 1 ]]
  then
    java -jar xyz.jar &
  fi
done
share|improve this answer
#!/bin/bash while :; do sleep 10 tail -1 ~/newlog.log | grep -q "Stream closed" if [ $? -eq 1 ] then java -jar xyz.jar & fi done This keeps running every ten seconds even though the last line doesn't contain Stream closed – R1234 Sep 30 '11 at 5:28
@Rohan: I tested this only on MacOSX (bash), but did you try using [[ for the if? – beny23 Oct 2 '11 at 14:41

I would prefer checking whether the corresponding process is still running and restart the program on that event. There might be other errors that cause the process to stop. You can use a cronjob to periodically (like every minute) perform such a check.

Also, you might want to improve your java code so that it does not crash that often (if you have access to the code).

share|improve this answer
I do not have control over the java code. Can you give an example of the cronjob thing you're talking about. I'm a newbie to all these commands. – R1234 Sep 29 '11 at 9:05
I'm not an expert either, but have look at this: google.com/… – michael667 Sep 29 '11 at 9:07

i solved this using a watchdog script that checks directly (grep) if program(s) is(are) running. by calling watchdog every minute (from cron under ubuntu), i basically guarantee (programs and environment are VERY stable) that no program will stay offline for more than 59 seconds.

this script will check a list of programs using the name in an array and see if each one is running, and, in case not, start it.

#!/bin/bash
#
# watchdog
#
# Run as a cron job to keep an eye on what_to_monitor which should always
# be running. Restart what_to_monitor and send notification as needed.
#
# This needs to be run as root or a user that can start system services.
#
# Revisions: 0.1 (20100506), 0.2 (20100507)

# first prog to check
NAME[0]=soc_gt2
# 2nd
NAME[1]=soc_gt0
# 3rd, etc etc
NAME[2]=soc_gp00


# START=/usr/sbin/$NAME
NOTIFY=you@gmail.com
NOTIFYCC=you2@mail.com
GREP=/bin/grep
PS=/bin/ps
NOP=/bin/true
DATE=/bin/date
MAIL=/bin/mail
RM=/bin/rm


for nameTemp in "${NAME[@]}"; do
    $PS -ef|$GREP -v grep|$GREP $nameTemp >/dev/null 2>&1
    case "$?" in
    0)
        # It is running in this case so we do nothing.
        echo "$nameTemp is RUNNING OK. Relax."

        $NOP
        ;;
    1)
        echo "$nameTemp is NOT RUNNING. Starting $nameTemp and sending notices."
        START=/usr/sbin/$nameTemp 
        $START 2>&1 >/dev/null &
        NOTICE=/tmp/watchdog.txt
        echo "$NAME was not running and was started on `$DATE`" > $NOTICE
        # $MAIL -n -s "watchdog notice" -c $NOTIFYCC $NOTIFY < $NOTICE
        $RM -f $NOTICE
        ;;
    esac
done

exit

i do not use the log verification, though you could easily incorporate that into your own version (just change grep for log check, for example).

if you run it from command line (or putty, if you are remotely connected), you will see what was working and what wasnt. have been using it for months now without a hiccup. just call it whenever you want to see what's working (regardless of it running under cron).

you could also place all your critical programs in one folder, do a directory list and check if every file in that folder has a program running under the same name. or read a txt file line by line, with every line correspoding to a program that is supposed to be running. etcetcetc

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.