Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want my node.js server to run in the background, ie: when I close my terminal I want my server to keep running. I've googled this and came up with this tut, however it doesn't work as intended. So instead of using that daemon script, I thought I just used the output redirection (the 2>&1 >> file part), but this too does not exit (I get a blank line in my terminal, like it's waiting for output/errors).

I've also tried to put the process in the background, but as soon as I close my terminal the process is killed as well.

So how can I leave it running when I shut down my computer?

share|improve this question
13  
Technically, you can't leave anything running when you shut down your computer ;) – Andrew Nov 20 '12 at 15:54
Haha. Good one. – trusktr Nov 23 '12 at 10:51

8 Answers

up vote 68 down vote accepted

use Forever http://blog.nodejitsu.com/keep-a-nodejs-server-up-with-forever

it rocks

share|improve this answer
3  
With latest node I was unable to get it to stop an app via the script name (error) - also - generally misbehaving (was on OS-X) - all built from source, oddly. Left things in a bad state, didn't fill me with confidence. – Michael Neale Apr 12 '11 at 12:32
2  
While nohup does the trick, forever is a better solution as it daemonizes the process. Great tool! – Peter Kruithof Jun 9 '11 at 9:57
1  
Just by the way, a simpler tutorial is available here: Keep a node.js server up with Forever – Opeyemi Obembe Sep 29 '12 at 2:20
1  
I did use Forever for a while, at the beginning everything seems ok but then disaster happened. Forever could not manage the processes anymore and let them run wild. Still struggling to find a better solution. I will try to use nohup – Leon Nguyen Jan 21 at 12:25
1  
Geoffrey- no, you'll need to do forever start /path/to/yourApp.js in your server startup script. – mikermcneil Mar 3 at 17:14
show 3 more comments

Use nohup:

nohup node server.js &
share|improve this answer
37  
cool part to know: nohup stands for no hangup which comes from the old days, where you wanted you keep a process alive when you "hangup" your modem. – jAndy Oct 28 '10 at 19:48
1  
nowadays it's rather the name of signal 1 that processes receive to warn that the user closed the shell (or lost modem connection, of course :P) – lapo Dec 16 '11 at 9:44
2  
It's not the best solution because if the app encounters an uncaught error the node process will exit and not restart. Still, it's a reasonable option for development. – Andy E May 31 '12 at 18:38
How would I add environmental variables to that? eg: PORT=80 node server.js – Pardoner Oct 2 '12 at 18:45
Check out this answer from SO - stackoverflow.com/questions/8825460/… – SB. Oct 3 '12 at 16:05

This might not be the accepted way, but I do it with screen, especially while in development because I can bring it back up and fool with it if necessary.

screen
node myserver.js
>>CTRL-A then hit D

The screen will detach and survive you logging off. Then you can get it back back doing screen -r. Hit up the screen manual for more details. You can name the screens and whatnot if you like.

share|improve this answer
2  
Maybe not the accepted way, but still very helpful, thanks! – Peter Kruithof Oct 25 '10 at 21:34
Also, tmux is nice. Works like screen (CTRL-B is default instead of CTRL-A, but is configurable). Tmux has panels (split screens). – snapfractalpop Mar 21 '12 at 18:17
screen has panels too – Billy Moon Mar 3 at 10:37
Very useful when your working with NodeJs on the RaspberryPi.. – Donald Derek May 13 at 20:39

I am simply using the daemon npm module:

var daemon = require('daemon');

daemon.daemonize({
    stdout: './log.log'
  , stderr: './log.error.log'
  }
, './node.pid'
, function (err, pid) {
  if (err) {
    console.log('Error starting daemon: \n', err);
    return process.exit(-1);
  }
  console.log('Daemonized successfully with pid: ' + pid);

  // Your Application Code goes here
});

Lately I'm also using mon(1) from TJ Holowaychuk to start and manage simple node apps.

share|improve this answer

Node.js as a background service in WINDOWS XP

Installation:

  1. Install WGET http://gnuwin32.sourceforge.net/packages/wget.htm via installer executable
  2. Install GIT http://code.google.com/p/msysgit/downloads/list via installer executable
  3. Install NSSM http://nssm.cc/download/?page=download via copying nnsm.exe into %windir%/system32 folder
  4. Create c:\node\helloworld.js

    // http://howtonode.org/hello-node
    var http = require('http');
    var server = http.createServer(function (request, response) {
        response.writeHead(200, {"Content-Type": "text/plain"});
        response.end("Hello World\n");
    });
    server.listen(8000);
    console.log("Server running at http://127.0.0.1:8000/");
    
  5. Open command console and type the following (setx only if Resource Kit is installed)

    C:\node> set path=%PATH%;%CD%
    C:\node> setx path "%PATH%"
    C:\node> set NODE_PATH="C:\Program Files\nodejs\node_modules"
    C:\node> git config --system http.sslcainfo /bin/curl-ca-bundle.crt    
    C:\node> git clone --recursive git://github.com/isaacs/npm.git    
    C:\node> cd npm    
    C:\node\npm> node cli.js install npm -gf   
    C:\node> cd ..    
    C:\node> nssm.exe install node-helloworld "C:\Program Files\nodejs\node.exe" c:\node\helloworld.js    
    C:\node> net start node-helloworld
    
  6. A nifty batch goodie is to create c:\node\ServiceMe.cmd

    @echo off
    nssm.exe install node-%~n1 "C:\Program Files\nodejs\node.exe" %~s1
    net start node-%~n1
    pause
    

Service Management:

  • The services themselves are now accessible via Start-> Run-> services.msc or via Start->Run-> MSCONFIG-> Services (and check 'Hide All Microsoft Services').
  • The script will prefix every node made via the batch script with 'node-'.
  • Likewise they can be found in the registry: "HKLM\SYSTEM\CurrentControlSet\Services\node-xxxx"
share|improve this answer

This is a pretty old thread now, but node-windows provides another way to create background services on Windows. It is loosely based on the nssm concept of using an exe wrapper around your node script. However; it uses winsw.exe instead and provides a configurable node wrapper for more granular control over how the process starts/stops on failures. These processes are available like any other service:

enter image description here

The module also bakes in some event logging:

enter image description here

Daemonizing your script is accomplished through code. For example:

var Service = require('node-windows').Service;

// Create a new service object
var svc = new Service({
  name:'Hello World',
  description: 'The nodejs.org example web server.',
  script: 'C:\\path\\to\\my\\node\\script.js'
});

// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
  svc.start();
});

// Listen for the "start" event and let us know when the
// process has actually started working.
svc.on('start',function(){
  console.log(svc.name+' started!\nVisit http://127.0.0.1:3000 to see it in action.');
});

// Install the script as a service.
svc.install();

The module supports things like capping restarts (so bad scripts don't hose your server) and growing time intervals between restarts.

Since node-windows services run like any other, it is possible to manage/monitor the service with whatever software you already use.

Finally, there are no make dependencies. In other words, a straightforward npm install -g node-windows will work. You don't need Visual Studio, .NET, or node-gyp magic to install this. Also, it's MIT and BSD licensed.

In full disclosure, I'm the author of this module. It was designed to relieve the exact pain the OP experienced, but with tighter integration into the functionality the Operating System already provides. I hope future viewers with this same question find it useful.

share|improve this answer
I've now ported this to node-mac, providing the same functionality on OSX. – Corey May 20 at 20:47

Check out fugue! Apart from launching many workers, you can demonize your node process too!

http://github.com/pgte/fugue

share|improve this answer

This answer is quite late to the party, but I found that the best solution was to write a shell script that used the both the screen -dmS and nohup commands.

screen -dmS newScreenName nohup node myserver.js >> logfile.log

I also add the >> logfile bit on the end so I can easily save the node console.log() statements.

Why did I use a shell script? Well I also added in an if statement that checked to see if the node myserver.js process was already running.

That way I was able to create a single command line option that both lets me keep the server going and also restart it when I have made changes, which is very helpful for development.

share|improve this answer
Please. No screen solutions. – Christopher Smith Apr 24 '12 at 21:14
1  
I've run into this problem and am pretty new to Linux. How would you do it without screen or nohup? – Craig Norton May 9 '12 at 20:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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