Last active
February 27, 2023 10:22
-
-
Save damarowen/de687a49806eb4c06640afc9cf61acd3 to your computer and use it in GitHub Desktop.
KILL PORT IN WINDOWS
This file contains 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
tasklist | find "node.exe" | |
taskkill /PID 18836 /F | |
#find port in local | |
netstat -ano | findstr :6379 | |
kill all go | |
taskkill /f /im go.exe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment