Skip to content

Instantly share code, notes, and snippets.

@folkcode
Forked from robertoaloi/kill-erlang-node.sh
Created March 22, 2016 14:58
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 folkcode/55178a1f8925cdec476a to your computer and use it in GitHub Desktop.
Save folkcode/55178a1f8925cdec476a to your computer and use it in GitHub Desktop.
Kill an Erlang process by node name
#!/usr/bin/env bash
# Kill an Erlang process by node name
#
# e.g.: kill-erlang-node kred
# Check usage
if [ -z "$1" ]; then
echo "Usage: `basename $0` NODE_NAME"
exit 1
fi
# Fetch input parameters
NAME="$1"
# Kill the Erlang process corresponding to a given node name
port=`epmd -names | awk -v name=$NAME '$2==name {print $5}'`
if [ -z "$port" ]; then
echo "ERROR: Node name not found: $NAME"
exit 1
else
pid=`lsof -i TCP:$port -s TCP:LISTEN | tail -n +2 | awk '{print $2}'`
kill $pid
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment