Tente seguir
[Unit]
Description="Runs the Node Server for Node API"
#Requires=After=mysql.service # If you have any dependency then add it
[Service]
ExecStart=/root/.nvm/versions/node/v9.11.1/bin/node /root/Node/bin/www
Restart=always
# Restart service after 10 seconds if node service crashes
RestartSec=10
# Output to syslog
StandardOutput=syslog
StandardError=syslog
#Change this to find app logs in /var/log/syslog
SyslogIdentifier=nodejs-api
# Followig will require if you are using the PORT or Node from Envirnoment
Environment=NODE_ENV=production PORT=3000
[Install]
WantedBy=multi-user.target
Quando a máquina do seu servidor estiver funcionando & você não é capaz de acessar o servidor, você soluciona problemas verificando logs de / var / log / syslog pelo seguinte comando
sudo cat /var/log/syslog | grep -r "nodejs-api"
Iniciar na inicialização: sudo systemctl ativar o rocketchat