How to stop Meteor? How to stop Meteor? javascript javascript

How to stop Meteor?


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}'`exitENDSSH


On OSX, go back to the term you opened to start meteor, and use CTRL+C to quit the process.


if Meteor is running on :3000 port:

kill -9 $(lsof -i :3000 -t);