| #!/bin/bash | |
| # | |
| # description: Apache Tomcat init script | |
| # processname: tomcat | |
| # chkconfig: 234 20 80 | |
| # | |
| # | |
| # Copyright (C) 2014 Miglen Evlogiev | |
| # | |
| # This program is free software: you can redistribute it and/or modify it under | |
| # the terms of the GNU General Public License as published by the Free Software | |
| # Foundation, either version 3 of the License, or (at your option) any later | |
| # version. | |
| # | |
| # This program is distributed in the hope that it will be useful, but WITHOUT | |
| # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
| # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | |
| # | |
| # You should have received a copy of the GNU General Public License along with | |
| # this program. If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| # Initially forked from: gist.github.com/valotas/1000094 | |
| # Source: gist.github.com/miglen/5590986 | |
| #Location of JAVA_HOME (bin files) | |
| export JAVA_HOME=/usr/java/latest | |
| #Add Java binary files to PATH | |
| export PATH=$JAVA_HOME/bin:$PATH | |
| #CATALINA_HOME is the location of the bin files of Tomcat | |
| export CATALINA_HOME=/usr/share/tomcat | |
| #CATALINA_BASE is the location of the configuration files of this instance of Tomcat | |
| export CATALINA_BASE=/var/apphome/tomcat-node-1 | |
| #TOMCAT_USER is the default user of tomcat | |
| export TOMCAT_USER=tomcat | |
| #TOMCAT_USAGE is the message if this script is called without any options | |
| TOMCAT_USAGE="Usage: $0 {\e[00;32mstart\e[00m|\e[00;31mstop\e[00m|\e[00;31mkill\e[00m|\e[00;32mstatus\e[00m|\e[00;31mrestart\e[00m}" | |
| #SHUTDOWN_WAIT is wait time in seconds for java proccess to stop | |
| SHUTDOWN_WAIT=20 | |
| tomcat_pid() { | |
| echo `ps -fe | grep $CATALINA_BASE | grep -v grep | tr -s " "|cut -d" " -f2` | |
| } | |
| start() { | |
| pid=$(tomcat_pid) | |
| if [ -n "$pid" ] | |
| then | |
| echo -e "\e[00;31mTomcat is already running (pid: $pid)\e[00m" | |
| else | |
| # Start tomcat | |
| echo -e "\e[00;32mStarting tomcat\e[00m" | |
| #ulimit -n 100000 | |
| #umask 007 | |
| #/bin/su -p -s /bin/sh $TOMCAT_USER | |
| if [ `user_exists $TOMCAT_USER` = "1" ] | |
| then | |
| /bin/su $TOMCAT_USER -c $CATALINA_HOME/bin/startup.sh | |
| else | |
| echo -e "\e[00;31mTomcat user $TOMCAT_USER does not exists. Starting with $(id)\e[00m" | |
| sh $CATALINA_HOME/bin/startup.sh | |
| fi | |
| status | |
| fi | |
| return 0 | |
| } | |
| status(){ | |
| pid=$(tomcat_pid) | |
| if [ -n "$pid" ] | |
| then echo -e "\e[00;32mTomcat is running with pid: $pid\e[00m" | |
| else | |
| echo -e "\e[00;31mTomcat is not running\e[00m" | |
| return 3 | |
| fi | |
| } | |
| terminate() { | |
| echo -e "\e[00;31mTerminating Tomcat\e[00m" | |
| kill -9 $(tomcat_pid) | |
| } | |
| stop() { | |
| pid=$(tomcat_pid) | |
| if [ -n "$pid" ] | |
| then | |
| echo -e "\e[00;31mStoping Tomcat\e[00m" | |
| #/bin/su -p -s /bin/sh $TOMCAT_USER | |
| sh $CATALINA_HOME/bin/shutdown.sh | |
| let kwait=$SHUTDOWN_WAIT | |
| count=0; | |
| until [ `ps -p $pid | grep -c $pid` = '0' ] || [ $count -gt $kwait ] | |
| do | |
| echo -n -e "\n\e[00;31mwaiting for processes to exit\e[00m"; | |
| sleep 1 | |
| let count=$count+1; | |
| done | |
| if [ $count -gt $kwait ]; then | |
| echo -n -e "\n\e[00;31mkilling processes didn't stop after $SHUTDOWN_WAIT seconds\e[00m" | |
| terminate | |
| fi | |
| else | |
| echo -e "\e[00;31mTomcat is not running\e[00m" | |
| fi | |
| return 0 | |
| } | |
| user_exists(){ | |
| if id -u $1 >/dev/null 2>&1; then | |
| echo "1" | |
| else | |
| echo "0" | |
| fi | |
| } | |
| case $1 in | |
| start) | |
| start | |
| ;; | |
| stop) | |
| stop | |
| ;; | |
| restart) | |
| stop | |
| start | |
| ;; | |
| status) | |
| status | |
| exit $? | |
| ;; | |
| kill) | |
| terminate | |
| ;; | |
| *) | |
| echo -e $TOMCAT_USAGE | |
| ;; | |
| esac | |
| exit 0 |
This comment has been minimized.
This comment has been minimized.
kingtheus
commented
Dec 5, 2013
|
issue warning when stop the service platform: CentOS6.4 x64 waiting for processes to exit |
This comment has been minimized.
This comment has been minimized.
|
Hello everyone, sorry I didn't updated this file very soon. Usually when Tomcat doesn't want to stop I terminate the process. Therefore I will update the script to terminate tomcat after 30 seconds, and also some additional commands to generate heap dump. |
This comment has been minimized.
This comment has been minimized.
atmakurig
commented
Apr 5, 2015
|
the following worked for me with out issues. Start tomcatecho -e "\e[00;32mStarting tomcat\e[00m" |
This comment has been minimized.
This comment has been minimized.
timothyhutz
commented
May 27, 2015
|
Hey I added some RHEL 5,6,7 compadibility to a fork I started, you may want to merge it for us RHEL peeps source I got the idea from here is the fork with the push commit added already |
This comment has been minimized.
This comment has been minimized.
highel
commented
Jun 22, 2015
|
Hi, you should add chkconfig support to make it perfect
|
This comment has been minimized.
This comment has been minimized.
leeryu
commented
Jun 27, 2015
|
thank you!!! |
This comment has been minimized.
This comment has been minimized.
clabu
commented
Jul 8, 2015
|
Under what license can this script be used? It would be great if you could add a license header. |
This comment has been minimized.
This comment has been minimized.
ltsallas
commented
Jul 24, 2015
|
Thanks for this script! |
This comment has been minimized.
This comment has been minimized.
jboeshart
commented
Sep 1, 2015
|
You might consider adding a proper return code on the status command. Something like this: status function
status reference in case statement
This came about when trying to use this init script with Chef, it wouldn't start the service because the status command was returning 0. Returning a non-0 value if it's not running allows Chef to pick this up and start the service. |
This comment has been minimized.
This comment has been minimized.
|
Hello @jboeshart, thank you will do it! :) |
This comment has been minimized.
This comment has been minimized.
coy123
commented
Oct 13, 2015
|
Thank you for the script. A couple of notes that worked for me: |
This comment has been minimized.
This comment has been minimized.
mirabilos
commented
Nov 11, 2015
|
This script does not wait until the server is fully started up and ready to serve, and as such, unsafe. |
This comment has been minimized.
This comment has been minimized.
|
@mirabilos will fix that and drop you reply! :) |
This comment has been minimized.
This comment has been minimized.
joerifeyen
commented
Nov 24, 2015
|
Hi Miglen, Great script. I also saw that the script does not wait for tomcat to be fully started up. Thanks in advance, Joeri |
This comment has been minimized.
This comment has been minimized.
itsjimbo
commented
Mar 19, 2016
|
Nice script! Three minor improvements to make, if you want. Pass java options in
The command to start then becomes
Print Dots instead of a New Line
Setup Init Info
|
This comment has been minimized.
This comment has been minimized.
arberg
commented
Aug 30, 2016
|
I added the following features to my gist here (I don't know how to 'push') https://gist.github.com/arberg/af06bf99a31675e48bf9cb9d5ffe789c Added wait for start using curl check. |
This comment has been minimized.
This comment has been minimized.
rougesheep
commented
Sep 2, 2016
|
Had some issues with tomcat_pid() matching wrong processes (like tailing tomcat logs). This fixed it for me https://gist.github.com/rougesheep/2e66e5b7637d3f0b6feba0949d898554 |
This comment has been minimized.
This comment has been minimized.
nsarker
commented
Sep 26, 2016
|
I found this script is very useful in practical. Great Job. Keep it UP! |
This comment has been minimized.
This comment has been minimized.
fjgarciainclan
commented
Sep 28, 2016
•
|
I added "-l" parameter to line 64 /bin/su -l $TOMCAT_USER -c $CATALINA_HOME/bin/startup.sh to load user environment |
This comment has been minimized.
This comment has been minimized.
twotwo
commented
Nov 3, 2016
|
update tomcat_pid() to work on OS X |
This comment has been minimized.
This comment has been minimized.
djechelon
commented
Nov 17, 2016
•
|
The script does a potential infinite wait on startup. I think the script should fail if tomcat does not start up before a timeout. Suppose Tomcat does not start for a reason someday (e.g. problems with file system, permission, etc), it won't probably open the port and the entire boot sequence may be at jeopardy if the script loops on |
This comment has been minimized.
This comment has been minimized.
ComexChan
commented
Nov 30, 2016
|
Hey,Thank for your perfect script.
But if I have opened a conf file in the $CATALINA_BASE ,the command will return more than one result. you can change it to
Thank you! |
This comment has been minimized.
This comment has been minimized.
SeungmanLee
commented
Apr 18, 2017
•
|
Hello, Thanks for your script. When i stop tomcat, sometimes process shows more then 1. so It cause many pid lists. So, I recommand tomcat_pid scripts change below Thank you! |
This comment has been minimized.
This comment has been minimized.
haani-niyaz
commented
Jun 18, 2017
|
The tomcat
|
This comment has been minimized.
nikband commentedOct 17, 2013
in the tomcat_pid() if you have multiuser for tomcat (like TomcatA, TomcatB, etc...) the pid returned is not one but an array... so i suggest to change:
echo
ps aux | grep org.apache.catalina.startup.Bootstrap | grep -v grep | awk '{ print $2 }'into
echo
ps aux | grep org.apache.catalina.startup.Bootstrap | grep -v grep | grep $TOMCAT_USER | awk '{ print $2 }'