clear port terminal code example
Example 1: mac terminal find process by port
sudo lsof -i tcp:3000
Example 2: kill port in mac terminal
sudo lsof -i :5955
Example 3: how to stop a port in macos
kill -9 port
sudo lsof -i tcp:3000
sudo lsof -i :5955
kill -9 port