PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.
Starting an application in production mode is as easy as:
$ pm2 start app.js
PM2 is constantly assailed by more than 1400 tests.
Official website: http://pm2.keymetrics.io/
Works on Linux (stable) & macOS (stable) & Windows (stable).
All Node.js versions are supported starting Node.js 0.12.
Install PM2
$ npm install pm2 -g
npm is a builtin CLI when you install Node.js - Installing Node.js with NVM
Start an application
$ pm2 start app.js
Your app is now daemonized, monitored and kept alive forever.
More about Process Management
Container Support
Using Containers? We got your back with pm2-runtime, a dedicated command for running Node.js in containers and our officialy suported Docker image.
Using it:
FROM keymetrics/pm2:latest-alpine
[...]
CMD [ "pm2-runtime", "ecosystem.config.js" ]
Read More about the dedicated integration
Monitor PM2 and Applications
To monitor your applications just type:
$ pm2 register
More about PM2 Monitoring
Updating PM2
$ npm install pm2@latest -g
$ pm2 update
PM2 updates are seamless
Main features
Commands overview
$ npm install pm2 -g
$ pm2 start app.js
$ pm2 start app.py
$ pm2 start npm -- start
$ pm2 start app.js -i 4
$ pm2 reload all
$ pm2 scale [app-name] 10
$ pm2 list
$ pm2 list --sort=<field>
$ pm2 monit
$ pm2 show [app-name]
$ pm2 logs
$ pm2 logs [app-name]
$ pm2 logs --json
$ pm2 flush
$ pm2 reloadLogs
$ pm2 start app.js --name="api"
$ pm2 start app.js -- -a 34
$ pm2 start app.js --watch
$ pm2 start script.sh
$ pm2 start app.json
$ pm2 reset [app-name]
$ pm2 stop all
$ pm2 stop 0
$ pm2 restart all
$ pm2 gracefulReload all
$ pm2 delete all
$ pm2 delete 0
$ pm2 startup
$ pm2 save
$ pm2 resurrect
$ pm2 unstartup
$ pm2 update
$ pm2 generate
$ pm2 deploy app.json prod setup
$ pm2 deploy app.json prod
$ pm2 deploy app.json prod revert 2
$ pm2 module:generate [name]
$ pm2 install pm2-logrotate
$ pm2 uninstall pm2-logrotate
$ pm2 publish
Process management
Once applications are started you can list and manage them easily:
Listing all running processes:
$ pm2 list
Managing your processes is straightforward:
$ pm2 stop <app_name|id|'all'|json_conf>
$ pm2 restart <app_name|id|'all'|json_conf>
$ pm2 delete <app_name|id|'all'|json_conf>
To make sure it re-evaluates enviroment variables declared in your json_conf
pass it as argument, and optionally your custom env
name from your json_conf
if any:
$ pm2 restart <json_conf> [--env <env_name>]
To have more details on a specific process:
$ pm2 describe <id|app_name>
More about Process Management
Load Balancing & Zero second Downtime Reload
When an application is started with the -i <instance_number> option, the Cluster Mode is enabled.
The Cluster Mode starts <instance_number> instances of your app and automatically load balance HTTP/TCP/UDP between each instance. This allows to increase overall performance depending on the number of CPUs available.
Seamlessly supported by all major Node.js frameworks and any Node.js applications without any code change:
Main commands:
$ pm2 start app.js -i max
$ pm2 reload all
$ pm2 scale <app_name> <instance_number>
More informations about how PM2 make clustering easy
CPU / Memory Monitoring
Monitoring all processes launched:
$ pm2 monit
Log facilities
Displaying logs of a specified process or all processes, in real time. Standard, Raw, JSON and formated output are available.
$ pm2 logs ['all'|app_name|app_id] [--json] [--format] [--raw]
Examples:
$ pm2 logs APP-NAME
$ pm2 logs --json
$ pm2 logs --format
$ pm2 flush
$ pm2 reloadLogs
More about log management
Startup script generation
PM2 can generate and configure a startup script to keep PM2 and your processes alive at every server restart.
Supports init systems like: systemd (Ubuntu 16, CentOS, Arch), upstart (Ubuntu 14/12), launchd (MacOSx, Darwin), rc.d (FreeBSD).
$ pm2 startup
$ pm2 startup [platform]
$ pm2 unstartup
To save/freeze a process list on reboot:
$ pm2 save
More about startup scripts
Module system
PM2 embeds a simple and powerful module system. Installing a module is straightforward:
$ pm2 install <module_name>
Here are some PM2 compatible modules (standalone Node.js applications managed by PM2):
pm2-logrotate auto rotate logs of PM2 and applications managed
pm2-webshell expose a fully capable terminal in browsers
pm2-server-monit monitor your server health
Writing your own module
Keymetrics monitoring
If you manage your NodeJS app with PM2, Keymetrics makes it easy to monitor and manage apps across servers.
Feel free to try it:
Discover the monitoring dashboard for PM2
Thanks in advance and we hope that you like PM2!
More about PM2
CHANGELOG
CHANGELOG
Contributors
Contributors
License
PM2 is made available under the terms of the GNU Affero General Public License 3.0 (AGPL 3.0).
We can deliver other licenses, for more informations contact sales.