Introduction to possible problems after installing Tomcat

Introduction to possible problems after installing Tomcat

1. Tomcat service is not open

Enter localhost:8080 in the address bar of the browser and press Enter to display the following interface

Tomcat service is not open. Enter startup.bat in cmd. Do not close the open tomcat window.

2. Enter the wrong URL path

If you enter the URL in the browser and it displays 404, it may be that the entered path does not exist or the entered path is incorrect.

3. Java JDK environment variables are not set

When entering startup.bat in cmd, an error is reported.

As shown:

Solution:

This is because the environment variable name of the Java jdk is not set correctly. The variable name for setting the jdk path must be JAVA_HOME .

Find the system variable interface and change the incorrect jdk variable name.

After the change: After the change, reopen cmd and enter startup.bat to start normally.

4. Repeatedly enable the service

The service has been enabled and does not need to be enabled again.

5. Port is occupied

Access Error occurs when accessing via the web page, and the port is occupied

Open cmd and enter the command: delete the process occupying the port number you specified

netstat -ano: View all port information

netstat ano | findstr "8080": View port 8080 usage information

tasklist: View all processes

tasklist | findstr "1": View a process

taskkill /f /pid process number: delete a process number

This is the end of this article about the problems that may arise after installing tomcat. For more information about installing tomcat, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to 404 Problem of Tomcat Installation in Docker

<<:  Detailed explanation of the use and difference between relative and absolute in HTML

>>:  Example code for implementing complex table headers in html table

Recommend

Teach you how to use AWS server resources for free

AWS - Amazon's cloud computing service platfo...

React Fragment Introduction and Detailed Usage

Table of contents Preface Motivation for Fragment...

Detailed explanation of the correct use of the if function in MySQL

For what I am going to write today, the program r...

MySQL index coverage example analysis

This article describes MySQL index coverage with ...

Detailed use cases of vue3 teleport

Official Website https://cli.vuejs.org/en/guide/ ...

Analysis of centos6 method of deploying kafka project using docker

This article describes how to use docker to deplo...

How to implement form validation in Vue

1. Installation and use First, install it in your...

Implementation steps for setting up the React+Ant Design development environment

Basics 1. Use scaffolding to create a project and...

In-depth analysis of Nginx virtual host

Table of contents 1. Virtual Host 1.1 Virtual Hos...

MySQL uses find_in_set() function to implement where in() order sorting

This article introduces a tutorial about how to u...

Hadoop 2.x vs 3.x 22-point comparison, Hadoop 3.x improvements over 2.x

Question Guide 1. How does Hadoop 3.x tolerate fa...

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Some CSS questions you may be asked during an interview

This article is just to commemorate those CSS que...