I am trying to debug a problem with forever / nodejs and I get this stack in the error log:
chdir(): Permission denied
events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn EACCES
at errnoException (child_process.js:980:11)
at Process.ChildProcess._handle.onexit (child_process.js:771:34)
It looks as if I should look at line 980 of a file called "child_process.js" to see where the error is. However, I cannot find such a file in the system even with "find". Did I miss something, or was it hidden?
source
share