I am running a node script in my EC2 instance. I use forever.js to launch it, because I would like to launch it even when I disconnect from my SSH connection.
I run:
forever start app.js
and then list the running processes using:
forever list
and for uptime says STOPPED no matter what i do.
ubuntu@ip-xx-xxx-xxx-xxx :~$ forever list info: Forever processes running data: uid command script forever pid id logfile uptime data: [0] 79f1 /usr/local/bin/node app.js 17099 17100 /home/ubuntu/.forever/79f1.log STOPPED
source share