Page tree

Versions Compared

Key

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

...

프로세스 종료

  • 실행중인 웹 소켓 서버를 종료합니다.
windows
Code Block
languagebash
themeEmacs
# 웹 소켓 서버 종료
taskkill /f /pid <PID번호>

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

# 예시
kill -9 4300

...