Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

38
pm2 Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pm2
> Process manager for Node.js.
> Used for log management, monitoring and configuring processes.
> More information: <https://pm2.keymetrics.io>.
- Start a process with a name that can be used for later operations:
`pm2 start {{app.js}} --name {{application_name}}`
- List processes:
`pm2 list`
- Monitor all processes:
`pm2 monit`
- Stop a process:
`pm2 stop {{application_name}}`
- Restart a process:
`pm2 restart {{application_name}}`
- Dump all processes for resurrecting them later:
`pm2 save`
- Resurrect previously dumped processes:
`pm2 resurrect`