pm2 簡介與常用指令

2021-09-24 07:58:02 字數 524 閱讀 4582

npm install pm2 -g             全域性安裝 pm2

pm2 list 列舉所有正在執行的應用

pm2 stop id 停止應用(通過應用id)

pm2 stop all 停止所有應用

pm2 restart id 重啟應用(通過應用id)

pm2 restart all 重啟所有應用

pm2 delete id 刪除應用(通過應用id)

pm2 delete all 刪除所有應用

pm2 describe id 獲取應用的詳細資訊(通過應用id)

pm2 monit 顯示每個應用的cpu和記憶體占用情況複製**

pm2常用命令

安裝 npm install pm2 g 安裝pm2 pm2 update 更新pm2 pm2 uninstall pm2 移除pm2 開啟關閉 pm2 start server.js 啟動server.js程序 pm2 stop all 停止所有程序 pm2 stop 0 停止編號為0的程序 pm...

pm2常用命令

pm2常用命令 pm2 start script.sh 啟動 bash 指令碼 pm2 list 列表 pm2 啟動的所有的應用程式 pm2 logs 顯示所有應用程式的日誌 pm2 stop all 停止所有的應用程式 pm2 stop 0 停止 id為 0的指定應用程式 pm2 restart ...

pm2 常用命令

1.啟動服務pm2 start options 啟動指定應用 max 表示pm2將自動檢測可用cpu的數量並執行盡可能多的程序 max可以自定義,如果是4核cpu,設定為2則占用2個 pm2 dev start 開發模式啟動,即不啟用後台執行 2.檢視啟動列表 pm2 list pm2 show n...