Killport is a Linux command-line tool that allows users to quickly kill processes listening to a single or multiple ports.

seen from Philippines

seen from United States
seen from China
seen from France

seen from Slovakia
seen from United States
seen from Russia

seen from United States
seen from Italy
seen from Malaysia

seen from Malaysia
seen from United States

seen from China
seen from South Korea
seen from China
seen from United States
seen from Italy
seen from China
seen from Portugal

seen from Italy
Killport is a Linux command-line tool that allows users to quickly kill processes listening to a single or multiple ports.
Useful bash scripts
killport kill the process that is running on a given port lsof -nP -i4TCP | grep $1 | while read first pid line do kill -9 $pid done Usage: killport 8080 listport list the process that is running on a given port lsof -nP -i4TCP | grep $1 | while read first pid line do echo $first $pid $line done Usage: listport 8080
View On WordPress