Eclipse configures Tomcat and Tomcat has invalid port solution

Eclipse configures Tomcat and Tomcat has invalid port solution

1. Eclipse configures Tomcat

1. Select window-preferences as shown in the picture

Eclipse configures Tomcat and Tomcat has invalid port solution

2. Select runtime environment in server

Eclipse configures Tomcat and Tomcat has invalid port solution

3. Click add on the right and select your own Tomcat version

Eclipse configures Tomcat and Tomcat has invalid port solution

Please note that the corresponding versions of Tomcat and eclipse are different. The following is what the author saw online. You can consider the details yourself.

  • Eclipse 4.8 (Photon)--------Tomcat9.0
  • Eclipse 4.7 (Oxygen--------Tomcat9.0
  • Eclipse 4.6 (Neon)--------Tomcat9.0
  • Eclipse 4.5 (Mars)---------Tomcat8.0
  • Eclipse 4.4 (Luna)--------Tomcat8.0
  • Eclipse 4.3 (Kepler)--------Tomcat7.0

4. Then click next, fill in the installation directory according to your own installation directory, and keep the default name and jre

Eclipse configures Tomcat and Tomcat has invalid port solution

5. Then finish and apply. The project has not been put on Tomcat at this time and still needs to be configured.

6. Create a new dynamic web project, as shown in the figure

Eclipse configures Tomcat and Tomcat has invalid port solution

When creating a project, the target runtime is to select the server. With the previous operation, you can select the server we configured, otherwise it can only be null

Eclipse configures Tomcat and Tomcat has invalid port solution

7. Then click next, next, and then check to create the web.xml file. Here I changed the content directory to content. The created directory will be different, but it will not affect the Tomcat configuration. Just finish it when you are done.

Eclipse configures Tomcat and Tomcat has invalid port solution

8. Then select according to the picture

Eclipse configures Tomcat and Tomcat has invalid port solution

This interface appears

Eclipse configures Tomcat and Tomcat has invalid port solution

9. Double-click the blue font, the next interface pops up, select your project, and click add

Eclipse configures Tomcat and Tomcat has invalid port solution

After adding, just finish.

10. After writing the web project, right-click the blue text in the figure and select start to start the Tomcat service.

Eclipse configures Tomcat and Tomcat has invalid port solution

2. Solution to invalid port in Tomcat

When Tomcat starts the service, the following problem often occurs. After some investigation, I found that the problem is that there are multiple ports or the port number is occupied. There are several solutions:

Eclipse configures Tomcat and Tomcat has invalid port solution

Method 1:

1. Select the server.xml file in the servers on the left and double-click to open it.

Eclipse configures Tomcat and Tomcat has invalid port solution

2. Click source in the lower left corner of the file

Eclipse configures Tomcat and Tomcat has invalid port solution

3. Change the port number here to 8888

Eclipse configures Tomcat and Tomcat has invalid port solution

Then start the service, the service can be started

Method 2:

1. Find the bin file of Tomcat and find the file in it

Eclipse configures Tomcat and Tomcat has invalid port solution

After clicking it, you will find that the service is running. Click Stop to stop it, and then confirm.

Eclipse configures Tomcat and Tomcat has invalid port solution

——>

Eclipse configures Tomcat and Tomcat has invalid port solution

The reason is that the local server is started in the bin directory, a copy of Tomcat is copied in Eclipse, and the Tomcat integrated server is started during runtime, so the port number is occupied.

Method 3:

Find the file under conf in the downloaded Tomcat and edit its port number to prevent port number conflicts.

Eclipse configures Tomcat and Tomcat has invalid port solution

This method is similar to method 1. It should be noted that a copy of Tomcat is made in Eclipse. The modification here only changes the port number of the local server, and does not change the port number of Tomcat in Eclipse. It needs to be reconfigured to be successful.

I feel that the modification mentioned online here cannot be successful for this reason.

Reconfiguration is tedious, but there is a simple way to do this:

1. Double-click the blue sentence

Eclipse configures Tomcat and Tomcat has invalid port solution

2. You can see that the server path is not the path of the downloaded Tomcat, which proves that a copy of Tomcat is indeed copied in Eclipse.

Eclipse configures Tomcat and Tomcat has invalid port solution

3. Click the second one in server locations (use Tomcat installa). This option will associate the server in Eclipse with the local server, and then you only need to change one. But it should be noted that it needs to be modified before the service is started and cannot be modified after it is started. I cannot modify it now.

This is the end of this article about eclipse configuration of Tomcat and the solution to invalid port in Tomcat. For more relevant content about eclipse configuration of Tomcat invalid port, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to modify the port number of Tomcat 6.x in MyEclipse
  • Perfect solution to the problem of ports 8080 and other ports being occupied when deploying Tomcat on Eclipse

<<:  Pure CSS custom multi-line ellipsis problem (from principle to implementation)

>>:  A screenshot demo based on canvas in html

Recommend

MySQL Query Cache Graphical Explanation

Table of contents 1. Principle Overview Query Cac...

Introducing ECharts into the Vue project

Table of contents 1. Installation 2. Introduction...

Solution to forgetting mysql database password

You may have set a MySQL password just now, but f...

How to enter and exit the Docker container

1 Start the Docker service First you need to know...

Vue uniapp realizes the segmenter effect

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

Do you know the weird things in Javascript?

Our veteran predecessors have written countless c...

MySQL common statements for viewing transactions and locks

Some common statements for viewing transactions a...

Tutorial on using $attrs and $listeners in Vue

Table of contents introduce Example Summarize int...

Summary of Linux date command knowledge points

Usage: date [options]... [+format] or: date [-u|-...

How to handle long data when displaying it in html

When displaying long data in HTML, you can cut off...

React internationalization react-intl usage

How to achieve internationalization in React? The...

How to use an image button as a reset form button

When we make a form, we often set a submit button ...

A tutorial on how to install, use, and automatically compile TypeScript

1. Introduction to TypeScript The previous articl...

A brief analysis of JS original value and reference value issues

Primitive values ​​-> primitive types Number S...