Skip to content

Instantly share code, notes, and snippets.

@joncode
Created February 18, 2015 13:28
Show Gist options
  • Save joncode/a228feb2e6e31b247611 to your computer and use it in GitHub Desktop.
Save joncode/a228feb2e6e31b247611 to your computer and use it in GitHub Desktop.
KILL UNIX Server
list the pids
lsof -i:3000
ruby 28479 username 10u IPv4 0x50e2b32487dea405 0t0 TCP *:hbci (LISTEN)
kill the server
kill -9 28479
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment