Answers for "errno 98 address already in use uvicorn"

6

ERROR:uvicorn.error:[Errno 98] Address already in use

sudo lsof -t -i tcp:8000 | xargs kill -9
Posted by: Guest on May-30-2020
0

uvicorn ERROR: [Errno 98] Address already in use

#find the process using the port
lsof -i :8000
#and kill it
kill -9 process_id
Posted by: Guest on November-19-2020

Code answers related to "errno 98 address already in use uvicorn"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language