Keep a node application constantly running
Use PM2 as a process manager
Section titled “Use PM2 as a process manager”PM2 lets you run your nodejs scripts forever. In the event that your application crashes, PM2 will also restart it for you.
Install PM2 globally to manager your nodejs instances
npm install pm2 -gNavigate to the directory in which your nodejs script resides and run the following command each time you want to start a nodejs instance to be monitored by pm2:
pm2 start server.js --name "app1"Useful commands for monitoring the process
Section titled “Useful commands for monitoring the process”Running and stopping a Forever daemon
Section titled “Running and stopping a Forever daemon”To start the process:
$ forever start index.jswarn: --minUptime not set. Defaulting to: 1000mswarn: --spinSleepTime not set. Your script will exit if it does not stay up for at least 1000msinfo: Forever processing file: index.jsList running Forever instances:
$ forever listinfo: Forever processes running
|data: | index | uid | command | script |forever pid|id | logfile |uptime ||---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|----|-----|---|---|---|---|---|---|---|---|---|---------------|---|---|---|---|---|---|---|---|---|----------|---|---|---|---|---|---|---|---|---|--------|-----|---|---|---|---|---|---|---|---|---|---------------------|---|---|---|---|---|---|---|---|---|-----------||data: | [0] |f4Kt |/usr/bin/nodejs | src/index.js|2131 | 2146|/root/.forever/f4Kt.log | 0:0:0:11.485 |Stop the first process:
$ forever stop 0
$ forever stop 2146
$ forever stop --uid f4Kt
$ forever stop --pidFile 2131Continuous running with nohup
Section titled “Continuous running with nohup”An alternative to forever on Linux is nohup.
To start a nohup instance
- cd to the location of
app.jsorwwwfolder - run
nohup nodejs app.js &
To kill the process
- run
ps -ef|grep nodejs kill -9 <the process number>
Process Mangement with Forever
Section titled “Process Mangement with Forever”Installation
npm install forever -gcd /node/project/directoryUsages
forever start app.js

