mac kill what is listening on port code example
Example 1: kill process running on port mac
sudo lsof -i :3000
kill -9 <PID>
Example 2: how to kill a service based on port number on mac
lsof -P | grep ':PortNumber' | awk '{print $2}' | xargs kill -9