Created
July 5, 2020 09:32
-
-
Save sathishkumarpkd/238d7464472b32e5a6dfa32102476fb4 to your computer and use it in GitHub Desktop.
Important tips.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Check and terminate port in windows. | |
C:\Users\Admin> netstat -ano | findstr :8080 | |
It will show as below: | |
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 6956 | |
TCP [::]:8080 [::]:0 LISTENING 6956 | |
Then run the below command to kill the PID | |
C:\Users\Admin>taskkill /PID 6956 /F | |
SUCCESS: The process with PID 6956 has been terminated. | |
Now you can re run the Spring application smoothly. Thank you!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment