Home > Mobile >  conflict port Tomcat v9 on Eclipse java EE Developers with services option
conflict port Tomcat v9 on Eclipse java EE Developers with services option

Time:08-04

Eclipse says i have a port problem when i try to start the server. I have changed the 8080 connection port in both xml. files (Tomcat folder and Eclipse workspace folder).

I have modified the connection port to 9090 and it doesn't work. Apparently everything is ok but Tomcat doesn't start. I have restart the Apache service on the services menu and i get still the same error. I've only changed the connection port.

I haven't change the comments nor redirectPort 8443. ¿what can i do? i already installed for a second time the server in Java. I cannot uninstall Eclipse (i don't know why it doesn't appear in my program list of my windows home 10)Error Message on Eclipse

I need to solve this problem because i have to install the Spring libraries. Thanks for advance.

CodePudding user response:

Step 1: Find the process id

netstat -ano | findstr 8080

Step 2: Open command prompt as administrator and kill the process

 taskkill /F /pid 1088

CodePudding user response:

first at all thank you for your responses:

To Olaf Kock:

I have find the solution changing in the server menu as you said. The Tomcat admin port field was empty so i've assigned the 8010, i have change the 8080 for the 9080 in the HTTP/1.1 field and i have solved the problem

To Sam Bhu:

Thank you to you too because it has been helpful because i wasn't very into prompt command and i have learned some.

Thank you everybody

  • Related