Solve the problem that shutting down Tomcat using shutdown.bat will shut down other Tomcats

Solve the problem that shutting down Tomcat using shutdown.bat will shut down other Tomcats

The shutdown.bat file has a sentence

if not "%CATALINA_HOME%" == "" goto gotHome

When executing the shutdown command, the program will search according to CATALINA_HOME. This means that if the path configured by the environment variable is not empty, this will be executed, otherwise " set CATALINA_HOME=%CURRENT_DIR% ", that is, the current path will be assigned to it.

The solution is to

if not "%CATALINA_HOME%" == "" goto gotHome

Add rem in front to comment it out, so that each time the command is executed, only the current path will be operated.

Right now:

rem if not "%CATALINA_HOME%" == "" goto gotHome

Similarly, if the port configuration for starting Tomcat is invalid (address already in use), add rem to this place in startup.bat.

As shown in the figure:

Summarize

The above is what I introduced to you to solve the problem that shutting down Tomcat using shutdown.bat will shut down other Tomcats. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to control Tomcat startup and shutdown in Asp.net
  • How to start/stop Tomcat server in Java
  • Java code closes the tomcat program and analyzes the problems
  • A bug fix for Tomcat's automatic shutdown

<<:  A brief discussion on innodb's index page structure, insert buffer, and adaptive hash index

>>:  Detailed explanation of InnoDB architecture and features (summary of InnoDB storage engine reading notes)

Recommend

Vue implements tab label (label exceeds automatic scrolling)

When the created tab label exceeds the visible ar...

Windows DNS server exposed "worm-level" vulnerability, has existed for 17 years

Vulnerability Introduction The SigRed vulnerabili...

Detailed steps to install nginx on Apple M1 chip and deploy vue project

brew install nginx Apple Mac uses brew to install...

Specific use of stacking context in CSS

Preface Under the influence of some CSS interacti...

jQuery implements sliding tab

This article example shares the specific code of ...

About the problem of running git programs in jenkins deployed by docker

1. First, an error message is reported when assoc...

Detailed explanation of using javascript to handle common events

Table of contents 1. Form events 2. Mouse events ...

HTML table tag tutorial (21): row border color attribute BORDERCOLOR

To beautify the table, you can set different bord...

Detailed explanation of firewall rule settings and commands (whitelist settings)

1. Set firewall rules Example 1: Expose port 8080...

Django+vue registration and login sample code

register The front-end uses axios in vue to pass ...

vue-cropper component realizes image cutting and uploading

This article shares the specific code of the vue-...

CSS cleverly uses gradients to achieve advanced background light animation

accomplish This effect is difficult to replicate ...

Detailed process of installing logstash in Docker

Edit docker-compose.yml and add the following con...