3👍
Just try to run this command it will create .sock file for you
sudo systemctl start gunicorn
sudo systemctl enable gunicorn
this will create your_project.sock file and then check the status by typing this command
sudo systemctl status gunicorn
0👍
If you are using systemd
enable and start your service. If everything ok with service
file it will create the .sock
file again.
systemctl start <your service name>
systemctl enable <your service name>
- [Django]-Upgrade Django project to Python3 – migrations fail
- [Django]-Modifying ancestor nested Meta class in descendant
- [Django]-Django models to hold a list of objects from another Model
- [Django]-How to fix "TemplateDoesNotExist at /admin/login/django/forms/widgets/text.html" error in Django??'
Source:stackexchange.com