Please I made a NodeJs application and put it on the start of ubuntu server like a service.
In my command which start nodeJs automaticaly is:
cd /var/www/node
node server.js
The problem now is that my command doesn't start like daemon and on he boot it prevents all other services.Now,all other services cannot start after the execution of this command and I have not access for my login.
Please how to skip or stop the automatic execution of the script of my nodeJS and get access to my server in order to modify the problem?
Thanks to all of you