I use this command:
kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`
Or, I run this if I'm on my local machine to kill remote processes:
ssh [user]@[server] <<'ENDSSH'
kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`
exit
ENDSSH
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…