So I know, it was not the most smartass idea, but I updated nodejs to version 0.10 with "n" while the server was still running with forever. Now when I try typing in
$ forever list
or
$ forever stopall
or
$ forever restartall
it simply does nothing. Anyways -
$ forever --help
still shows the help menu, but all actions won't work. And my nodejs Server is still responding!
Is there any method I can kill forever with fire?
You can use
sudo killall node
OR
sudo forever stopall
If that too doesn't work simply use
sudo kill -9 $(ps aux | grep 'node' | awk '{print $2}')
Hope this works
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With