Skip to content

Instantly share code, notes, and snippets.

@sathishkumarpkd
Created July 5, 2020 09:32
Show Gist options
  • Save sathishkumarpkd/238d7464472b32e5a6dfa32102476fb4 to your computer and use it in GitHub Desktop.
Save sathishkumarpkd/238d7464472b32e5a6dfa32102476fb4 to your computer and use it in GitHub Desktop.
Important tips.
// 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