Shell/Bash: how to listen to the process running in port 8080 and kill it Example
Shell/Bash Example: This is the "how to listen to the process running in port 8080 and kill it" Example. compiled from many sources on the internet by SimpleTutorials.org
how to listen to the process running in port 8080 and kill it
Steps to kill process running on port 8080 in Windows cmd/terminal, #1 netstat -ano | findstr < Port Number > #2 taskkill /F /PID < Process Id >
kill process running on port 80
# shows information on Processes running on port 80 with PIDs $: sudo lsof -i tcp:80 $: sudo lsof -t -i tcp:80 | sudo xargs kill
* Summary: This "how to listen to the process running in port 8080 and kill it" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!