Files
nexus/wiki/concepts/pm2.md

766 B
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
pm2 concept
process-manager
node
ubuntu
vibe-coding
2026-04-15

Definition

Node.js 进程管理器,提供进程守护、日志管理、开机自启功能,适合生产环境长期运行 Node 服务。

Core Mechanism

  • 安装npm install -g pm2
  • 启动pm2 start "command" --name
  • 日志pm2 logs
  • 保存pm2 save保存当前进程列表
  • 开机自启pm2 startup systemd -u --hp
  • 进程列表pm2 status

Use Case

管理 Ubuntu Server 上的 Vibe-Kanban Web UI 进程PORT 9999确保服务持续运行并开机自启。

Connections