Answers for "how to close application on port in linux"

5

kill port linux

kill -9 $(lsof -t -i:8080)
Posted by: Guest on December-29-2020
1

kill all process at port

lsof -ti tcp:2525 | xargs kill
Posted by: Guest on November-06-2020

Code answers related to "how to close application on port in linux"

Browse Popular Code Answers by Language