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

seen from Brazil

seen from Malaysia

seen from United States
seen from United States
seen from Singapore

seen from United States

seen from United Kingdom
seen from United States

seen from Malaysia
seen from China
seen from United States

seen from Singapore
seen from Saudi Arabia
seen from United States

seen from United States
seen from United States

seen from Australia
seen from United Kingdom

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