Reputation: 1
I installed my app dependencies using pip:
pip3 install -r requirements.txt --user
Then installed the Gunicorn HTTP server:
pip3 install gunicorn --user
but when I try to run the Gunicorn HTTP server on GCP :
~/.local/bin/gunicorn -b :8080 main:app
I get the following error :
When I try to check the port 8080 with cmd:
-a -n -o | find "8080"
nothing shows up.
Upvotes: 0
Views: 574
Reputation: 638
sudo fuser -k 8080/tcp
This will kill all the process accessing 8080 port. Then retry
Upvotes: 2