Pregunta

I have a problem with node.js running a small web server serving files from the file system. When starting it with node server.js it works like a charm but when starting it with nohup or forever node.js can't find the files.

¿Fue útil?

Solución 3

It turned out to be the file path of the file that was the problem. When running the server using node the working directory is the same as the server.js file thus node.js manages to find the file.

When starting whilst using nohup or just starting with forever the working directory doesn't seem to be the same as server.js.

I solved this by prepending the global variable __dirname to the filename.

Otros consejos

This works for me:

nohup node server.js </dev/null

Another solution here is to run the command in a subshell using parentheses. (nohup node index.js)

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top