Notice
Recent Posts
Recent Comments
04-28 18:51
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
관리 메뉴

-

[Django] Error: That port is already in use 해결법 본문

Python

[Django] Error: That port is already in use 해결법

choiht 2021. 11. 23. 14:13
반응형

 

 

장고 실행시 이런 에러 메시지가 뜬다면 port 8000과 관련된 프로세스를 종료하고 다시 실행한다.

 

sudo lsof -t -i tcp:8000 | xargs kill -9

 

이후 명령어를 다시 실행해보면 서버가 정상적으로 작동되는 것을 확인할 수 있다.

 

반응형
Comments