Author: rjung Date: Thu Apr 9 10:29:52 2015 New Revision: 1672284 URL: http://svn.apache.org/r1672284 Log: More hints about process using the PID.
Modified: tomcat/trunk/bin/catalina.sh Modified: tomcat/trunk/bin/catalina.sh URL: http://svn.apache.org/viewvc/tomcat/trunk/bin/catalina.sh?rev=1672284&r1=1672283&r2=1672284&view=diff ============================================================================== --- tomcat/trunk/bin/catalina.sh (original) +++ tomcat/trunk/bin/catalina.sh Thu Apr 9 10:29:52 2015 @@ -342,7 +342,8 @@ elif [ "$1" = "start" ] ; then ps -p $PID >/dev/null 2>&1 if [ $? -eq 0 ] ; then echo "Tomcat appears to still be running with PID $PID. Start aborted." - echo "If this process is not a Tomcat process, remove the PID file and try again." + echo "If the following process is not a Tomcat process, remove the PID file and try again:" + ps -f -p $PID exit 1 else echo "Removing/clearing stale PID file." --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org