restart pm2 service code example
Example 1: pm2 remove app from list
pm2 start
pm2 stop
pm2 restart
pm2 delete
Example 2: start stop restart pm2
pm2 start app.js --name "my-api"
pm2 start web.js --name "web-interface"
pm2 stop web-interface
pm3 restart web-interface