Node.js script failed to start with systemctl
问题 I need to run my node.js script automatically from my remote machine with systemctl. I already made a .service file and put that into /etc/systemd/system/ . Here's the .service file: [Unit] Description=laporan [Service] ExecStart=/var/www/laporan/nodeserver/server.js Restart=always User=nobody Group=root Environment=PATH=/usr/bin:/usr/local/bin Environment=NODE_ENV=production WorkingDirectory=/var/www/laporan/nodeserver [Install] WantedBy=multi-user.target But every time I try to start the