Skip to content

Instantly share code, notes, and snippets.

@hoyacom
Last active January 10, 2019 02:33
Show Gist options
  • Save hoyacom/8204c3d656a77896d32fb2e07f17a53e to your computer and use it in GitHub Desktop.
Save hoyacom/8204c3d656a77896d32fb2e07f17a53e to your computer and use it in GitHub Desktop.
[Process CLI command] 프로세서 명령어 #lsof #ps

8080 포트를 사용하는 프로레서 찾기

 lsof -i tcp:8080

8080 포트를 사용하는 프로세서 죽이기

 kill $(lsof -t -i:8080) 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment