Make autoservice for Tomcat


--------------------------------------------------------------------------------
Step 1
--------------------------------------------------------------------------------

Create file in this location /etc/init.d/tomcat2 with following instructions and past below lines...

#nano /etc/init.d/tomcat2


#!/bin/bash

# description: Tomcat Start Stop Restart

# processname: tomcat

# chkconfig: 234 20 80

#Should be your java path location....

JAVA_HOME=/usr/lib/jvm/jre-openjdk

export JAVA_HOME

PATH=$JAVA_HOME/bin:$PATH

export PATH

#Should be your tomcat location

CATALINA_HOME=/opt/tomcat2
case $1 in

start)

sh $CATALINA_HOME/bin/startup.sh

;;

stop)

sh $CATALINA_HOME/bin/shutdown.sh

;;

restart)

sh $CATALINA_HOME/bin/shutdown.sh

sh $CATALINA_HOME/bin/startup.sh

;;

esac

exit 0

Popular posts from this blog

How to install and configure ApacheTomcat and Integrate with apache2 on Linux (Ubuntu 14.04)

How To Set Up Multiple Website on Ubuntu 14.04 LTS with Apache2

How to secondary mx or secondary mailserver holds mailqueue if primary server is down.