Windows Tomcat process ends

1, first find the process ID PID 8080 occupied port is the number
CMD> netstat -ano | findstr 8080
last one this command output indicates the process ID of the port occupied by 8080
Windows Tomcat process ends
2, kill off the process
CMD> taskkill / F / PID 8332
Windows Tomcat process ends

Guess you like

Origin blog.51cto.com/14221100/2456584