Get in touch

Send an email to: lammers@gmail.com.
Or find me online at: Github, X

Find process running on port

To find what process is running on a specific port and stop it:

  1. List all running processes on a port number (3000 in this case): lsof -i:3000
  2. Kill process by using the PID number (123 for example) of the process listed in the result of the previous command: kill -9 123