Last active
August 29, 2015 14:02
-
-
Save zdavis/710dcd755a9397ecb24b to your computer and use it in GitHub Desktop.
tomcat init.d script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# description: Tomcat Start Stop Restart | |
# processname: tomcat | |
# chkconfig: 234 20 80 | |
JAVA_HOME=/usr/java/jdk1.7.0_60 | |
export JAVA_HOME | |
PATH=$JAVA_HOME/bin:$PATH | |
export PATH | |
CATALINA_HOME=/var/lib/tomcat7 | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment