Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeEmacs
# 웹 소켓 서버가 올라가있는 포트번호로 동작 확인
netstat -ano |findstr ":<포트번호>" //windows
lsof -i :<포트 번호> //maclinux

# 예시
netstat -ano |findstr ":12000" //linux
lsof -i :12000 //maclinux

웹 소켓 서버 종료

코멘드로 종료

  • ctrl + c 로 종료합니다.

...

Code Block
languagebash
themeEmacs
# 웹 소켓 서버 종료
taskkill /f /pid <PID번호> //windows
kill -9 <PID번호> //maclinux

# 예시
taskkill /f /pid 4300 //linux
kill -9 4300 //mac

...