-1

...and The Tomcat connector configured to listen on port 8080 failed to start

im also using TCPview, so witch process should i stop in the picture

enter image description here

whats more, im working under spring-boot so i cant configure the port

alessandrio
  • 4,282
  • 2
  • 29
  • 40
Mehdi Hadji
  • 105
  • 2
  • 10
  • 2
    Possible duplicate of [Tomcat: java.net.BindException: Address already in use: JVM\_Bind :80](https://stackoverflow.com/questions/25742913/tomcat-java-net-bindexception-address-already-in-use-jvm-bind-null80) – pvpkiran May 31 '17 at 16:58

1 Answers1

0

so which process should i stop

The process with ID 6076

im working under spring-boot so i cant configure the port

Using Spring Boot doesn't stop you from configuring the port. If you are using an embedded container you can set the server.port property. If you are deploying a war to a standalone container then you can use the container's standard mechanism for configuring the port on which it listens.

Andy Wilkinson
  • 108,729
  • 24
  • 257
  • 242