Skip to content

Instantly share code, notes, and snippets.

@tanmay27vats
Last active June 14, 2019 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanmay27vats/3d77e22e31a77f6d1caa97928f208d75 to your computer and use it in GitHub Desktop.
Save tanmay27vats/3d77e22e31a77f6d1caa97928f208d75 to your computer and use it in GitHub Desktop.
Delete Process by Process ID (PID) Ubuntu Linux Command
# This will print you PID of process bound on that port.
fuser 3000/tcp
# And this will kill that process
fuser -k 3000/tcp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment