Answers for "kill all process at port"

8

kill port

kill -9 $(sudo lsof -t -i:8080)
Posted by: Guest on May-23-2020
1

kill all process at port

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language