Gunicorn daemon fails to start

I'm trying to deploy my django api on AWS EC2 but I keep getting this error.

enter image description here

I've checked everything seems to be fine.

Here is my gunicorn.service file

[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target

[Service]
User=ubuntu
Group=www-data
WorkingDirectory=/home/ubuntu/oicnm-backend
ExecStart=/home/ubuntu/oicnm-backend /env/bin/gunicorn \
          --access-logfile - \
          --workers 3 \
          --bind unix:/run/gunicorn.sock \
          core.wsgi:application
[Install]
WantedBy=multi-user.target

gunicorn.socket:

[Unit]
Description=gunicorn socket

[Socket]
ListenStream=/run/gunicorn.sock

[Install]
WantedBy=sockets.target
Back to Top