Linux under Tomcat restart and log

Reprinted from:  https://www.cnblogs.com/lcword/p/5852453.html

In the Linux system, restart Tomcat using the command operation!

First, go to the bin directory under Tomcat

cd /usr/local/tomcat/bin

 

Use Tomcat shutdown command

./shutdown.sh

See if Tomcat to close

ps -ef|grep java

If the message similar to the following, description has not closed Tomcat

root      7010     1  0 Apr19 ?        00:30:13 /usr/local/java/bin/java -Djava.util.logging.config.file=/usr/local/tomcat/conf/logging.properties -Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1024m -Xmx1024m -XX:NewSize=256m -XX:MaxNewSize=256m -XX:PermSize=256m -XX:MaxPermSize=256m -XX:+DisableExplicitGC -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=/usr/local/tomcat/endorsed -classpath /usr/local/tomcat/bin/bootstrap.jar -Dcatalina.base=/usr/local/tomcat -Dcatalina.home=/usr/local/tomcat -Djava.io.tmpdir=/usr/local/tomcat/temp org.apache.catalina.startup.Bootstrap start

* If you want to kill the Tomcat, you can use the kill command to directly kill the Tomcat process

kill -9 7010

Then continue to see if Tomcat shutdown

 ps -ef|grep java

If the following message appears, the Tomcat has been closed

root      7010     1  0 Apr19 ?        00:30:30 [java] <defunct>

Finally, start Tomcat

 ./startup.sh 

./startup.sh;tail -f ../logs/catalina.out start time can enter the boot log

 

catalina.out log file

 There is a log file under tomcat catalina.out under liunx logs file, save the tomcat log

 

Guess you like

Origin blog.csdn.net/m0_37564426/article/details/91797503