1. netstat 명령어로 해당 포트의 ID 알아내기
#>netstat -Aan | grep [찾고자 하는 포트]
(예 : netstat -Aan | grep 7070)
2. ID로 PID 찾아내기
#>rmsock [찾고자 하는 ID] tcpcb
(예 : rmsock f1000e00005cd3b8 tcpcb)
3. PID를 이용하여 프로세스 정보 확인
#>ps -ef | grep [PID]
(예 : ps -ef | grep 13145)
4. 명령어 사용 콘솔 예시
#>netstat -Aan | grep 7070
f1000e00005cd3b8 tcp4 0 0 *.7070 *.* LISTEN
#>rmsock f1000e00005cd3b8 tcpcb
The socket 0xf1000e00005cd008 is being held by proccess 57082050 (htl).
#>ps -ef | grep 57082050 www 57082050 1 0 9월 7일 - 36:48 htl -l 0x2 -I webtob1_8323440 -b 8323440
pbtest 65208342 66781420 0 11:10:36 pts/4 0:00 grep 57082050
'Server' 카테고리의 다른 글
[AIX] crontab 명령어, cron log 확인, 재기동 방법 (0) | 2024.01.26 |
---|---|
AIX netstat 명령어 - 포트 오픈 여부 확인하는 방법 (0) | 2023.10.31 |
AIX CPU,메모리 사용현황 조회 / 메모리사용률 PROCESS 나열 (0) | 2021.10.06 |
code-server java springboot maven(ing) (0) | 2021.03.09 |