kill port in terminal code example
Example 1: kill port
kill -9 $(sudo lsof -t -i:8080)
Example 2: kill port mac terminal
sudo lsof -i <Port>
sudo kill -9 <PID>
Example 3: kill port
:8080.
C:\Users\psmith>netstat -ano|findstr "PID :8080"
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:8081 0.0.0.0:0 LISTENING 18264
taskkill /pid 18264 /f
Example 4: how to stop a port in macos
kill -9 port