Closed mindvox closed 8 years ago
Hi @karlbateman,
This issue seems to arise with new versions of node. Processes spun up by newer versions of node don't respond to SIGTERM in the same way that they used to. I've put up a PR that I would expect to merge as soon as I run a few more checks (see #99)---it solves the EADDRINUSE issue. If you'd like, feel free to try it out and follow up!
In the mean time, if you need a quick fix to stop the process: run ps -a | grep node
and see what the process id is for your sticky processes. Then kill -9 {pid here}
.
(see also #102)
Merged #99
This is really annoying.. I cannot get this to restart on a file change, without throwing an error. Here is the complete output from the console:
Is there a way of specifying
nodemon app
from the command option so that the server can restart without this issue. This could make for a good workaround as I have not seen any real solution on the previous issues regarding this error.Any help with this would be greatly appreciated :smile:
Regards, Karl