sudo -i
cd /n8n
pm2 stop n8n
npm install -g n8n@latest
pm2 restart ecosystem.config.js
Bret notes:
it starts if i do it manually
i guess i have to manually start it first
pm2 start n8n then restart as pm2 start ecosystem.config.js
i think im missing that from my config file
#Converts time to HH:MM:SS
{{new Date(112*1000).toISOString().substr(11,8)}}
#Converts time to MM:SS, useful if seconds is <3600
{{new Date(112*1000).toISOString().substr(14,5)}}
Comments