#!/bin/sh
#chkconfig: 345 99 10
#description: JBoss auto start-stop script.
# Source function library.
. /etc/rc.d/init.d/functions
. /etc/rc.d/init.d/functions
# Get config.
. /etc/sysconfig/network
. /etc/sysconfig/network
# Check that networking is up.
[ "${NETWORKING}" = "no" ] && exit 0
[ "${NETWORKING}" = "no" ] && exit 0
### CHANGE THE STARTUP PATH TO YOUR START SCRIPT ###
startup='/home/jboss/jboss-as-web-7.0.2.Final/bin/standalone.sh > /dev/null 2> /dev/null &'
shutdown='killall java'
shutdown='killall java'
start(){
echo -n $"Starting JBoss service: "
$startup
RETVAL=$?
echo
}
echo -n $"Starting JBoss service: "
$startup
RETVAL=$?
echo
}
stop(){
action $"Stopping JBoss service: " $shutdown
RETVAL=$?
echo
}
action $"Stopping JBoss service: " $shutdown
RETVAL=$?
echo
}
restart(){
stop
sleep 10
start
}
stop
sleep 10
start
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac
1: Name and add it to /etc/init.d
2: chmod 755 jboss
3: chkconfig --add jboss && chkconfig jboss on
2: chmod 755 jboss
3: chkconfig --add jboss && chkconfig jboss on
Command Usage
service jboss start
service jboss stop
servoce jboss restart
service jboss start
service jboss stop
servoce jboss restart
No comments:
Post a Comment