[Django]-Deploying Django, supervisorctl abnormal termination

5👍

The issue was that the user uniusr did not have permissions to write to /opt/myapps. So what I did in order to fix this is the following.

sudo chown -R uniusr:users /opt/myapps
sudo chmod -R g+w /opt/myapps

Leave a comment