Horje
sudo kill port windows Code Example
kill port
sudo kill -9 `sudo lsof -t -i:9001`
kill port
sudo kill -9 $(sudo lsof -t -i:8080)
sudo kill port windows
Step 1:

netstat -ano | findstr :yourPortNumber


Change in Step 2 to:

tskill typeyourPIDhere 

Note: taskkill is not working in some git bash terminal
kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
sudo kill port windows
netstat -ano | findstr :yourPortNumber

tskill typeyourPIDhere 




Shell

Related
bash command to find the number of files in a directory Code Example bash command to find the number of files in a directory Code Example
convert pem to private key openssl Code Example convert pem to private key openssl Code Example
change user in git repository Code Example change user in git repository Code Example
git remove tracked files without deleting Code Example git remove tracked files without deleting Code Example
pyserial installing Code Example pyserial installing Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11