jineecode

Port 3000 is already in use. 본문

tip

Port 3000 is already in use.

지니코딩 2021. 11. 25. 09:45

Port 3000 is already in use.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.


1.

해당 프로세스를 종료하는 방법을 검색 할 수 있습니다.

Linux / Mac OS 검색의 경우 터미널에서 (sudo) 실행 :

$ lsof -i tcp:3000
$ kill -9 PID

Windows :

netstat -ano | findstr :3000
tskill typeyourPIDhere 

git bash에서 taskkill 에 대한 tskill 변경

 

 

2. 

sudo lsof -i:<PORT_NO>

현재 인스턴스를 닫지 만 백그라운드에서 프로세스를 중지 할 수 없습니다. 그래서 한 번

sudo kill <PID>

작동하지만 코드를 업데이트하고 저장하면 Nodemon 과 마찬가지로이 문제가 다시 발생합니다.

터미널을 종료하면 문제가 해결됩니다. 또는

  killall -9 node

 

 

3.

npx kill-port 3000

'tip' 카테고리의 다른 글

윈도우 환경에서 nvm 설치하기  (0) 2021.06.19
자주 들어가는 사이트  (0) 2021.04.13
fullpage  (3) 2021.03.16
fullpage.js-2.9.7.zip  (0) 2021.03.11
swiper-button-next , prev 버튼 바꾸기  (8) 2021.02.23
Comments