Address already in use
Port 5001 is in use by another program. Either identify and stop that program, or start the server with a different port.
localhost로 확인하려는데 5001번 포트가 이미 사용 중이라고 뜬다.
아마 이 전 작업하고 제대로 안 끄고 다시 실행해서 그런 것 같다.
터미널에
sudo lsof -i:포트번호
를 검색하고 사용 중인 포트번호의 pid를 확인하여
sudo kill -9 pid번호
해주면 된다.
그러면 이렇게
- Running on all addresses (0.0.0.0)
잘 돌아간다