Skip to content

Instantly share code, notes, and snippets.

@brokenmold
Last active August 18, 2022 01:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brokenmold/bb466556629bcd613c6315a04eeeffd0 to your computer and use it in GitHub Desktop.
Save brokenmold/bb466556629bcd613c6315a04eeeffd0 to your computer and use it in GitHub Desktop.
Kill Lost Process
// ** Kill Process on Specific Port **
sudo kill -9 $(sudo lsof -t -i:3001)
or
kill -9 $(lsof -t -i:3001)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment