Answers for "howto kill ports"

7

How to kill a port

npx kill-port 8080
Posted by: Guest on September-19-2020
0

kill all ports

kill PID
kill -s signalName PID
kill -signalName PID
kill -signalNumber PID

# get PID > run this command
sudo ss -tulpn | grep LISTEN

# Source
https://www.cyberciti.biz/faq/unix-kill-command-examples/
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language