Answer by Oleg Bondar' for How to install an init.d script?
This is command sequence to autostart your daemon at boot time:sudo cd /etc/init.dsudo chown root:root celerydsudo chmod 755 celerydsudo ln -s /usr/lib/insserv/insserv /sbin/insservsudo insserv celeryd
View ArticleAnswer by David Purdue for How to install an init.d script?
When you copy the script into place, don't forget to make it executable and owned by root:sudo chmod +x /etc/init.d/celerydsudo chown root:root /etc/init.d/celerydOnce you have installed that, you can...
View ArticleAnswer by Radu Rădeanu for How to install an init.d script?
If you get the command not found error when you run insserv, you may fix it by running the following command:sudo ln -s /usr/lib/insserv/insserv /sbin/insservThen see insserv -h or man insserv for...
View ArticleAnswer by Alaa Ali for How to install an init.d script?
Your celeryd script is probably not executable, that's why sudo /etc/init.d/celeryd is returning command not found. So, you need to first make it executable.To do so, run the following commands:sudo...
View ArticleHow to install an init.d script?
I am trying to install an init.d script, to run celery for scheduling tasks.Here is the steps I followed:copied the file celeryd and pasted it in folder /etc/init.d/created a configuration file celeryd...
View Article