체인의정석

port is already in used , 포트 죽이기 (업데이트) 본문

개발/backend

port is already in used , 포트 죽이기 (업데이트)

체인의정석 2022. 12. 9. 11:32
728x90
반응형

매번 포트를 죽이는 명령어를 구글링 하다가 그냥 내 블로그에 남기고 싶어서 작성해둔다.

 

1. netstat 사용

netstat -vanp tcp | grep 3000

2. mac os의 경우

lsof -i tcp:3000

찾았다면 죽이기

kill -9 <PID>

출저 : https://stackoverflow.com/questions/3855127/find-and-kill-process-locking-port-3000-on-mac

 

Find (and kill) process locking port 3000 on Mac

How do I find (and kill) processes that listen to/use my TCP ports? I'm on macOS. Sometimes, after a crash or some bug, my Rails app is locking port 3000. I can't find it using ps -ef... When running

stackoverflow.com

 

728x90
반응형
Comments