Find and Kill Process by Port
It is possible to find the process running on some port and then kill it:
sudo netstat -lpn |grep :'3000'
kill -9 <process-number>
Was this useful to you?
Yes
No
Tags:
It is possible to find the process running on some port and then kill it:
sudo netstat -lpn |grep :'3000'
kill -9 <process-number>