Under the Linux system, reboot Tomcat to operate with commands!
1. First, enter the bin directory under Tomcat
Cd/usr/local/tomcat/bin
2. Use Tomcat to close commands
./shutdown.sh
3. Check to see if Tomcat is closed
Ps-ef|grep Java
If the following similar information is displayed, Tomcat is not turned off
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
4. If you want to directly kill the Tomcat process (process number: 7010), you can use the KILL command
Kill-9 7010
5. Then continue to see if Tomcat is off
Ps-ef|grep Java
If the following information is present, Tomcat is turned off
Root 7010 1 0 Apr19? 00:30:30 [Java] <defunct>
6. Finally, start Tomcat
Linux under Tomcat reboot