The only answer on this question I saw - go start another copy on the different port. Switching from one Meteor workspace to another Okay, I see that I can run another one o
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