Having trouble running Some /etc/init.d shell scripts

Hi,

I am trying trying to run celery worker as a background daemon and the script has the following code.

# Names of nodes to start
#   most people will only start one node:
CELERYD_NODES="worker1"
#   but you can also start multiple and configure settings
#   for each in CELERYD_OPTS
#CELERYD_NODES="worker1 worker2 worker3"
#   alternatively, you can specify the number of nodes to start:
#CELERYD_NODES=10

# Absolute or relative path to the 'celery' command:
CELERY_BIN="/usr/local/bin/celery"
#CELERY_BIN="/virtualenvs/def/bin/celery"

# App instance to use
# comment out this line if you don't use an app
CELERY_APP="crm_v2"
# or fully qualified:
#CELERY_APP="proj.tasks:app"

# Where to chdir at start.
CELERYD_CHDIR="/opt/services/djangoapp/src/crm_v2/"

# Extra command-line arguments to the worker
CELERYD_OPTS="--time-limit=300 --concurrency=4"
# Configure node-specific settings by appending node name to arguments:
#CELERYD_OPTS="--time-limit=300 -c 8 -c:worker2 4 -c:worker3 2 -Ofair:worker1"

# Set logging level to DEBUG
#CELERYD_LOG_LEVEL="DEBUG"

# %n will be replaced with the first part of the nodename.
CELERYD_LOG_FILE="/var/log/celery/%n%I.log"
CELERYD_PID_FILE="/var/run/celery/%n.pid"

# Workers should run as an unprivileged user.
#   You need to create this user manually (or you can choose
#   a user/group combination that already exists (e.g., nobody).
CELERYD_USER="celery"
CELERYD_GROUP="celery"

# If enabled pid and log directories will be created if missing,
# and owned by the userid/group configured.
CELERY_CREATE_DIRS=1

This file exists in both /etc/init.d/ and /etc/alternatives. When I try to do /etc/init.d/celeryd start I get
bash: /etc/init.d/celeryd: Permission denied. I think this is because I try to run these processed with celery as a user and not root? What have I done wrong? Can anyone help me thanks.

Processes are not really ment to be run “in the background” on docker.
But its possible to run multiple processes with fx. Supervisor, see my previous post on this subject https://forums.docker.com/t/centos-7-systemd/54791/4