Skip to content

Instantly share code, notes, and snippets.

@koyanloshe
Last active April 17, 2020 08:30
Show Gist options
  • Save koyanloshe/9b72dc3230fa66c527170591586aab79 to your computer and use it in GitHub Desktop.
Save koyanloshe/9b72dc3230fa66c527170591586aab79 to your computer and use it in GitHub Desktop.
Kill a node server process that wont terminate #Unix
//primary attempt
killall node
//secondary attempt
kill -9 $(ps aux | grep '\snode\s' | awk '{print $2}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment