DEV Community

Discussion on: Deploying Django with Celery and Redis on Ubuntu

Collapse
 
peterpalace profile image
disgra

Thank you for this article!
For me, there was an error ([ERROR] Invalid address) regarding the command:
gunicorn Myproj.wsgi:application --bind 8001
I needed to add ":" before the port:
gunicorn Myproj.wsgi:application --bind :8001
Thank you for sharing.

Collapse
 
idrisrampurawala profile image
Idris Rampurawala

That's strange! Because it didn't require at my side and as per the documentation it is not required.
Good that you were able to figure it out and got your script working! 🎉 🙂