Detailed explanation of the solution to Tomcat's crash when double-clicking startup.bat

Detailed explanation of the solution to Tomcat's crash when double-clicking startup.bat

As a programmer who has just learned Tomcat, this is a common mistake.

1. Environment variable problem

1.1 First, you need to confirm whether the Java environment is configured correctly and whether the JDK is installed correctly

win+R to open cmd, enter java or javac
The following figure shows that the JDK configuration is correct:

insert image description here

If not, refer to JDK installation and configuration. If there are no problems with the above, see below.

1.2 Confirm Tomcat's environment variable configuration

For the free installation version of Tomcat, when starting Tomcat, it is necessary to read the environment variables and configuration information. Without this information, the environment variables cannot be registered, resulting in a crash.
Solution:

1: Find startup.bat in the bin folder of the unzipped tomcat, right-click -> Edit. Add the following two lines to the top of the file:
Note: The following path should be copied according to your own installation path

SET JAVA_HOME=D:\jdk1.8.0_131 (java jdk directory)
SET TOMCAT_HOME=D:\Tomcat\apache-tomcat-9.0.40-windows-x64\apache-tomcat-9.0.40 (the directory of the decompressed tomcat file)

As shown in the figure:

insert image description here

2. Find shutdown.bat in the unzipped tomcat bin folder, right-click -> Edit. Add the following two lines to the head of the file:

Note: The following path should be copied according to your own installation path

SET JAVA_HOME=D:\jdk1.8.0_131 (java jdk directory)
SET TOMCAT_HOME=D:\Tomcat\apache-tomcat-9.0.40-windows-x64\apache-tomcat-9.0.40 (the directory of the decompressed tomcat file)

As shown in the figure:

insert image description here

After configuration, just click start.bat to start.

2. Port occupation problem

If you are sure that there is no problem with the environment variable configuration, the port may be occupied.
Generally, the default port of Tomcat is 8080
For Windows systems, press win+R to open cmd and enter in the command line

netstat -ano | findstr 8080

To see if there is a process currently occupying the port

insert image description here

If you can see that the port is occupied, you can use the PID (process ID) to check which program is occupying the port. Enter in the command line

tasklist | findstr PID

Note: PID is the number in the last column. Do not forget the space when entering the command.

insert image description here

After finding the process occupying the port, enter in the command line

taskkill /f /t /im process name

Note: The space before the slash means the process name is the process name just found.

insert image description here

At this point, the process occupying the port is ended. At this time, double-click start.bat and there should be no problem.

This is the end of this article on how to solve the problem of Tomcat crashing when you double-click startup.bat. For more information about Tomcat crashing when you double-click startup.bat, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Causes and solutions for the problem of Tomcat crashing when starting up.bat
  • When the Web project is packaged into a war package and Tomcat is deployed, the startup.bat is run and the deployment fails directly. A quick solution
  • Solution to the problem of Tomcat crashing after clicking startup.bat
  • Double-click to start the startup.bat in tomcat and the reason and solution
  • Possible causes and solutions for Tomcat crashing when executing startup.bat

<<:  Solve the problem of MySQL reporting Invalid default value for ''operate_time'' error

>>:  Details of various font formats in HTML web pages

Recommend

In-depth explanation of MySQL stored procedures (in, out, inout)

1. Introduction It has been supported since versi...

Detailed usage of docker-maven-plugin

Table of contents Docker-Maven-Plugin Maven plugi...

MySQL concurrency control principle knowledge points

Mysql is a mainstream open source relational data...

MySQL Optimization: Cache Optimization (Continued)

There are caches everywhere inside MySQL. When I ...

How to install docker and portainer in kali

With the emergence of docker, many services have ...

Add crontab scheduled tasks to debian docker container

Now most of the Docker images are based on Debian...

Example of implementing QR code scanning effects with CSS3

Online Preview https://jsrun.pro/AafKp/ First loo...

How to modify the ssh port number in Centos8 environment

Table of contents Preface start Preface The defau...

WeChat applet realizes simple tab switching effect

This article shares the specific code for WeChat ...

A brief discussion on how to write beautiful conditional expressions in JS

Table of contents Multiple conditional statements...

Analysis of the solution to Nginx Session sharing problem

This article mainly introduces the solution to th...

Detailed explanation of js's event loop event queue in the browser

Table of contents Preface Understanding a stack a...

What you need to know about filters in Vue

Table of contents Preface What is a filter How to...

In-depth study of JavaScript array deduplication problem

Table of contents Preface 👀 Start researching 🐱‍🏍...