PM2开机自启动

  1. 使用pm2启动node
    # pm2 start /home/wwwroot/web.js --watch

  2. dump这些进程列表
    # pm2 save

  3. 生成自启动脚本
    # pm2 startup centos

  4. 赋予权限
    # chmod +x /etc/init.d/pm2-init.sh

  5. 添加服务
    # chkconfig --add [pm2-init.sh](http://pm2-init.sh/)

你可能感兴趣的:(PM2开机自启动)