LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   bash-script: how to start the prozess one after another (https://www.linuxquestions.org/questions/linux-software-2/bash-script-how-to-start-the-prozess-one-after-another-906557/)

thomas2004ch 10-05-2011 08:25 AM

bash-script: how to start the prozess one after another
 
Hi all,

I have an auto startup script (to start the Jboss) under /etc/init.d/myScript and looks as follow:

-rwxr-xr-x 1 root root 4334 Oct 5 14:33 /etc/init.d/mtext
Code:

#!/bin/bash
#
# $Id: jboss_init_redhat.sh 99350 2010-01-13 17:05:27Z bshim $
#
# JBoss Control Script for mtext
#
# chkconfig: 3 98 02
# description: jboss mtext

# To use this script run it as root - it will switch to the specified user
#
# Here is a little (and extremely primitive) startup/shutdown script
# for RedHat systems. It assumes that JBoss lives in /usr/local/jboss,
# it's run by user 'jboss' and JDK binaries are in /usr/local/jdk/bin.
# All this can be changed in the script itself.
#
# Either modify this script for your requirements or just ensure that
# the following variables are set correctly before calling the script.

#JAVA_OPTS="-Djboss.messagingServerPeerID=1"

#JBOSS_USER=`basename $0`
JBOSS_USER=mtext
. /home/$JBOSS_USER/.bash_profile

#define where jboss is - this is the directory containing directories log, bin, conf etc
JBOSS_HOME=${JBOSS_HOME:-"/usr/local/jboss"}

#define the user under which jboss will run, or use 'RUNASIS' to run as the current user
JBOSS_USER=${JBOSS_USER:-"jboss"}

#make sure java is in your path
JAVAPTH=${JAVAPTH:-"/usr/local/jdk/bin"}

#configuration to use, usually one of 'minimal', 'default', 'all', 'production'
JBOSS_CONF=${JBOSS_CONF:-"default"}

#if JBOSS_HOST specified, use -b to bind jboss services to that address
JBOSS_BIND_ADDR=${JBOSS_HOST:+"-b $JBOSS_HOST"}

#define the script to use to start jboss
JBOSSSH=${JBOSSSH:-"$JBOSS_HOME/bin/run.sh -c $JBOSS_CONF $JBOSS_BIND_ADDR"}

if [ "$JBOSS_USER" = "RUNASIS" ]; then
  SUBIT=""
else
  SUBIT="su - $JBOSS_USER -c "
fi

if [ -n "$JBOSS_CONSOLE" -a ! -d "$JBOSS_CONSOLE" ]; then
  # ensure the file exists
  touch $JBOSS_CONSOLE
  if [ ! -z "$SUBIT" ]; then
    chown $JBOSS_USER $JBOSS_CONSOLE
  fi
fi

if [ -n "$JBOSS_CONSOLE" -a ! -f "$JBOSS_CONSOLE" ]; then
  echo "WARNING: location for saving console log invalid: $JBOSS_CONSOLE"
  echo "WARNING: ignoring it and using /dev/null"
  JBOSS_CONSOLE="/dev/null"
fi

#define what will be done with the console log
JBOSS_CONSOLE=${JBOSS_CONSOLE:-"/dev/null"}

JBOSS_CMD_START="cd $JBOSS_HOME/bin; $JBOSSSH"

if [ -z "`echo $PATH | grep $JAVAPTH`" ]; then
  export PATH=$PATH:$JAVAPTH
fi

if [ ! -d "$JBOSS_HOME" ]; then
  echo JBOSS_HOME does not exist as a valid directory : $JBOSS_HOME
  exit 1
fi

echo JBOSS_CMD_START = $JBOSS_CMD_START

function procrunning() {
  procid=0
  JBOSSSCRIPT=$(echo $JBOSSSH | awk '{print $1}' | sed 's/\//\\\//g')
  for procid in `/sbin/pidof -x "$JBOSSSCRIPT"`; do
      ps -fp $procid | grep "${JBOSSSH% *}" > /dev/null && pid=$procid

  done
}


stop() {
    pid=0
    procrunning
    if [ $pid = '0' ]; then
        echo -n -e "\nNo JBossas is currently running\n"
        exit 1
    fi

    RETVAL=1

    # If process is still running

    # First, try to kill it nicely
    for id in `ps --ppid $pid | awk '{print $1}' | grep -v "^PID$"`; do
      if [ -z "$SUBIT" ]; then
          kill -15 $id
      else
          $SUBIT "kill -15 $id"
      fi
    done

    sleep=0
    while [ $sleep -lt 120 -a $RETVAL -eq 1 ]; do
        echo -n -e "\nwaiting for processes to stop";
        sleep 10
        sleep=`expr $sleep + 10`
        pid=0
        procrunning
        if [ $pid == '0' ]; then
            RETVAL=0
        fi
    done

    # Still not dead... kill it

    count=0
    pid=0
    procrunning

    if [ $RETVAL != 0 ] ; then
        echo -e "\nTimeout: Shutdown command was sent, but process is still running with PID $pid"
        exit 1
    fi

    echo
    exit 0
}

case "$1" in
start)
    cd $JBOSS_HOME/bin

    if [ -z "$SUBIT" ]; then
        eval $JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &
    else
        $SUBIT "$JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &"
    fi

    # JBOSS need about 3 Min. to Start, so to wait here
    sleep 180
    cd /opt/jboss/mtext/m/mdis
    nohup ./mdisengine &

    # Wait another 10 sec to start another prozess
    sleep 10
    cd /opt/jboss/mtext/m/tools
    nohup ./pbv_checkmtextd.pl &

    ;;
stop)
    stop
    cd /opt/jboss/mtext/m/mdis
    ./stop_mdisengine

    ;;
restart)
    $0 stop
    $0 start
    ;;
*)
    echo "usage: $0 (start|stop|restart|help)"
esac

Here one can see this script is going to start teh Jboss first. Then sleep 180 sec and start the second prozess. Then sleep 10 sec and start the third prozess.

This script is not execute from root but from each non-root user with command
Code:

/etc/init.d/myScript

lithos 10-05-2011 10:30 AM

I think that in scripting from CLI the "&&" can be used like:
Code:

$ grep "first" first_file.txt && grep "second" first_file.txt
meaning that when 1st finishes the second executes etc...

I don't really get your question "how to start the prozess one after another"
what would you like to do.

maybe this will get you a clue.

thomas2004ch 10-06-2011 12:42 AM

Quote:

Originally Posted by lithos (Post 4490755)

I don't really get your question "how to start the prozess one after another"
what would you like to do.

As shown in my script, I want to
1) start the Jboss first
2) then the sleep 180 sec and go to /opt/jboss/mtext/m/mdis and start the program 'mdisengine'
3) then sleep 10 sec and go to /opt/jboss/mtext/m/tools and start the 'pbv_checkmtextd.pl'


But it seems it doesn't work fine. I have to take out the 2) and 3) and start these manuelly.


All times are GMT -5. The time now is 08:21 AM.