Issue
i am beginner of spring boot. when i run the spring boot application i ran into the problem with The Tomcat connector configured to listen on port 8080 failed to start. Spring boot
i don't how to solve the problem. i have install mysql when i ran the mysql it port also 8080. so how to sort out the problm.
***************************
APPLICATION FAILED TO START
***************************
Description:
The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.
Action:
Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.
Solution
Seems like 8080 port is already used by some other process.
Change the port of spring-boot tomcat port by adding the server.port=8090
in application.properties
.
Change 8090 to any port you want to use.
Answered By - Smile
Answer Checked By - Terry (JavaFixing Volunteer)