I have an ubuntu 10.04 server and tried to create an upstart script:
description "node-workerListener" author "me" start on startup stop on shutdown script
This should start with a node script that works if I run it manually on the command line. But when I try to "start node -workerListener", I get the message "node -workerListener start / running, process 1323", but it is not.
In / var / log / syslog: "... init: node -workerListener main process (1317), terminated by status 1"
What can I do?
source share