end process at port centos code example
Example 1: 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 2: kill process on port
lsof -i:3000 // Change 3000 to whatever your port is!
sudo kill 9 <PID> // Change <PID> to the Pid number the above command returns