Created
February 18, 2015 13:28
-
-
Save joncode/a228feb2e6e31b247611 to your computer and use it in GitHub Desktop.
KILL UNIX Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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