Quantcast
Channel: How to install an init.d script? - Ask Ubuntu
Viewing all articles
Browse latest Browse all 5

Answer by Alaa Ali for How to install an init.d script?

$
0
0

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 chmod 755 /etc/init.d/celerydsudo chown root:root /etc/init.d/celeryd

The first line changes the permissions to -rwxr-xr-x, and the second line ensures that the owner and group owner of the file is root.

Once this is done, I assume you will need to use sudo /etc/init.d/celeryd start to start the daemon.


Viewing all articles
Browse latest Browse all 5

Trending Articles