I\'m trying to start a service with supervisor, but I get an error saying
INFO spawnerr: unknown error making dispatchers for \'app_name\': EACCES
>
I had the same issue - the celery sub program logs were being written in the logs subfolder under my app folder and turns out I had set the owner to www-user
while I was debugging an issue with Nginx. I changed the owner of the app folder back to ubuntu (>> whoami
)
sudo chown -R ubuntu:ubuntu /var/www/myapp/
to get it to work.