관리 메뉴

Silver Library (Archived)

[Django] port error - Error: That port is already in use. 본문

Personal DB/Unclassified record

[Django] port error - Error: That port is already in use.

Chesed Kim 2020. 11. 24. 23:27
반응형

Problem.

Once I run Django(pipenv shell), and then input as 'python manage.py runserver' after adjusting some features...

'Error: That port is alreardy in use'. And cannot access through port : 8000. Seems redirecting me to 8001 but nothing to work.

 

Solution.

sudo fuser -k 8000/tcp

# it will kill all port : 8000 that's currently running in background.

 

 

stackoverflow.com/questions/20239232/django-server-error-port-is-already-in-use

 

Django Server Error: port is already in use

Restarting the Django server displays the following error: this port is already running.... This problem occurs specifically on Ubuntu and not other operating systems. How can I free up the port to

stackoverflow.com

 

'Personal DB > Unclassified record' 카테고리의 다른 글

#4 Django and 'migrate' & application  (0) 2020.11.25
#3 Django - how dev only server works?  (0) 2020.11.24
#2 VSCode, Django setting.  (0) 2020.11.24
Cloned version - Kakaotalk  (0) 2020.11.24
Who is this person?  (0) 2020.11.24