by Nathan
PID 확인 및 Kill 본문
1. PID 확인
1
2
3
4
5 |
netstat -lntp | grep ${PORT} // PORT로 PID 확인
ps -ef | grep ${PID} // 프로세스 위치확인
kill -9 ${PID} // 해당 PID 강제종료 |
cs |
'Setup > Linux' 카테고리의 다른 글
jdk 설치 & 삭제 (0) | 2016.01.08 |
---|---|
Tomcat6 설치, catalina.out 초기화 (0) | 2015.12.22 |
CentOS 6.7 설치 (0) | 2015.12.04 |
FTP(vsftpd)설정 (0) | 2015.10.28 |
Oracle 시작(DBMS 서버) (0) | 2015.09.08 |
Comments