1. PID 확인 1 2 3 4 5 netstat -lntp | grep ${PORT} // PORT로 PID 확인 ps -ef | grep ${PID} // 프로세스 위치확인 kill -9 ${PID} // 해당 PID 강제종료 cs