Solved: Starting gunicorn 20.0.4 [ERROR] Connection in use: (‘0.0.0.0’, 8000)
![Solved: Starting gunicorn 20.0.4 [ERROR] Connection in use: (‘0.0.0.0’, 8000)](https://www.gotals.com/wp-content/uploads/2019/12/Python-Programming-720x340.png)
Sometime it’s happen!
So finally i got a solution for Starting gunicorn 20.0.4 [ERROR] Connection in use: (‘0.0.0.0’, 8000).
{Read:- How To Run Python 3 Flask App with Gunicorn - Step by Step Guide }
it’s happen when gunicorn already ruing a application on 8000 either gunicorn or other service.
Below solution is work for me,
ps -ax |grep gunicorn
15206 pts/0 S+ 0:00 grep –color=auto gunicorn
kill 15206
Now run:
gunicorn –bind 0.0.0.0:8000 wsgi
Hope its work! still facing any issue comment will help.