Shell/Bash: kill all process at port Example
Shell/Bash Example: This is the "kill all process at port" Example. compiled from many sources on the internet by SimpleTutorials.org
kill process on port
#To list any process listening to the port 8080: lsof -i:8080 #To kill any process listening to the port 8080: kill $(lsof -t -i:8080) #or more violently: kill -9 $(lsof -t -i:8080)
kill port
kill -9 $(sudo lsof -t -i:8080)
kill all process at port
lsof -ti tcp:2525 | xargs kill
* Summary: This "kill all process at port" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!