~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
$ pm2 list
>>>> In-memory PM2 is out-of-date, do:
>>>> $ pm2 update
In memory PM2 version: 2.4.6
Local PM2 version: 3.0.3
pm2 update
... works until I reboot
npm remove pm2 -g
which pm2
npm install pm2@latest -g
which pm2
sudo reboot
Any pointers?
I had the same problem and could solve it with re-creating the startup script. Try the following steps:
pm2 delete nameOfProcess
pm2 unstartup systemd
pm2 update
pm2 startup //copy paste the output
pm2 start nameOfProcess
pm2 save