I am running a terminal in webstorm. I try to run node --harmony app.js and says my koa app.listen () is already running.
So, I'm trying to find and see which node processes are running with ps aux | grep node
I see a couple of results:
myUserName 897 0.0 0.0 3083844 160 s000 T 11:15AM 0:00.32 node --harmony app.js myUserName 1935 0.0 0.0 2441988 676 s000 S+ 1:33PM 0:00.00 grep node
I am trying to kill 897 by doing kill 897 or pkill 897, but it still works. How can I kill this !!! ??
source share