JQChan / node-practice

0 stars 0 forks source link

使用PM2 运行Node项目 #7

Open JQChan opened 4 years ago

JQChan commented 4 years ago

https://www.douban.com/note/314200231/

  1. 安装pm2
    
    npm i -g pm2

或者

yarn global add pm2


2. 使用pm2启动项目

pm2 start app.js

![image](https://user-images.githubusercontent.com/7911342/81889283-b8400f00-95d5-11ea-91af-47bb1db54eda.png)

3. 检查Node项目是否启动

pm2 list

![image](https://user-images.githubusercontent.com/7911342/81889344-e02f7280-95d5-11ea-880f-0e0fb013851d.png)

4. 停止指定的进程

pm2 stop 0 // 进程id


5. 停止所有进程

pm2 stop all


6. 显示所有进程日志

pm2 logs

![image](https://user-images.githubusercontent.com/7911342/82006356-2f3edb80-969a-11ea-8e5d-e69fc75851f3.png)

7. 监视所有进程

pm2 monit


![image](https://user-images.githubusercontent.com/7911342/82006399-4d0c4080-969a-11ea-9dc3-89e9c5b2e08f.png)