How to stop Meteor?

前端 未结 14 1199
执念已碎
执念已碎 2020-12-07 14:45

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

14条回答
  •  甜味超标
    2020-12-07 15:08

    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
    

提交回复
热议问题