如何在ubuntu里面关掉后台的meteor

  1. kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`
或者远程终止服务器里面的meteor 
ssh [user]@[server] <<'ENDSSH'
kill -9 `ps ax | grep node | grep meteor | awk '{print $1}'`
exit
ENDSSH
原文地址:https://www.cnblogs.com/angestudy/p/6235038.html