i got the daemon working alright with these instructions: http://kevin.vanzonneveld.net/techblog/article/run_nodejs_as_a_service_on_ubuntu_karmic/

but because this starts the application in DEVELOPMENT mode, the log file gets spammed with socket.io debug logs.

i tried setting the NODE_ENV to production in the upstart-conf-file but had no success.

script
    export HOME="/root"
    export NODE_ENV=production

    exec /usr/local/bin/node /where/yourprogram.js >> /var/log/node.log 2>&1
end script

didn't work.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Try

exec NODE_ENV=production /usr/local/bin/node /where/yourprogram.js >> /var/log/node.log 2>&1

In my setup I'm sudoing as a lesser user, so it's

exec sudo -u some-user NODE_ENV=production /usr/local/bin/node /where/yourprogram.js >> /var/log/node.log 2>&1

and since it's spawning off another user it probably has another environment. I'm a newbie here, but it works for me.

link|improve this answer
feedback

If you are using node.js in production, I recommend you use forever.js to daemonize your program https://github.com/indexzero/forever

Install using npm: [sudo] npm install forever -g

export NODE_ENV=production and run forever start app.js You can also specify where to put error and stdout logs.

link|improve this answer
thanks. will check this out. – pkyeck Aug 11 '11 at 11:35
For something more advanced, you can also check out: github.com/learnboost/cluster – TiansHUo Aug 11 '11 at 11:55
Just to clarify on @TiansHUo last comment, Cluster doesn't solve the "keep it running" problem like Upstart with Respawn, Upstart + Monit, or Forever. – Chris F Jan 12 at 23:07
feedback

Here's a simpler upstart script you can use. You don't need any script sections and can use the "env" keyword to set the environment.

description "start and stop the <Your App> node.js server"
version "1.0"
author "You <you@email.example>"

start on filesystem and started networking
respawn

env NODE_ENV=production
env PATH=/home/you/node/bin
chdir /home/you/projects/your_app
exec su -c 'node server.js' www-data  >> /var/log/yourapp.log 2>&1

Make sure the www-data user (or whatever non-root user you decide to run your app as) can write to the log file(s).

link|improve this answer
will try that. thank you – pkyeck Aug 11 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.