반응형
내 포트를 사용하는 애플리케이션을 어떻게 찾습니까?
다음 오류 메시지가 계속 표시되므로 GlassFish를 시작할 수 없습니다.
SEVERE: Shutting down v3 due to startup exception : No free port within range: 8080=com.sun.enterprise.v3.services.impl.monitor.MonitorableSelectorHandler@ed7d1
Windows Vista에서 어떤 응용 프로그램이 어떤 포트를 사용하고 있는지 어떻게 알 수 있습니까? 다음 대상을 사용하여 nmap zenmap을 사용해 보았습니다.
그러나 내가 얻는 것은 이것뿐입니다.
Starting Nmap 5.51 ( http://nmap.org ) at 2011-08-05 12:05 Central Daylight Time
NSE: Loaded 57 scripts for scanning.
Read data files from: C:\Program Files\Nmap
Nmap done: 0 IP addresses (0 hosts up) scanned in 4.55 seconds
Raw packets sent: 0 (0B) | Rcvd: 0 (0B)
WARNING: No targets were specified, so 0 hosts scanned.
netstat는 어떻습니까?
http://support.microsoft.com/kb/907980
명령은 netstat -anob
입니다.
(명령을 관리자로 실행했는지 확인하십시오)
나는 얻다:
C:\Windows\system32>netstat -anob
활성 연결
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4
Can not obtain ownership information
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 692
RpcSs
[svchost.exe]
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 7540
[Skype.exe]
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4
Can not obtain ownership information
TCP 0.0.0.0:623 0.0.0.0:0 LISTENING 564
[LMS.exe]
TCP 0.0.0.0:912 0.0.0.0:0 LISTENING 4480
[vmware-authd.exe]
특정 포트를 확인하려면 사용할 명령은 다음과 같습니다. netstat -aon | 동일한 경로에서 findstr 8080
컴퓨터에서 사용할 수있는 포트를 확인하려면 다음을 실행하십시오.
C:> netstat -an |find /i "listening"
실행중인 다른 응용 프로그램이 없을 수 있습니다. 소켓이 이전 세션에서 완전히 종료되지 않았을 가능성이 있습니다.이 경우 해당 소켓에서 TIME_WAIT가 만료되기 전에 잠시 기다려야 할 수 있습니다. 불행히도 해당 소켓이 만료 될 때까지 포트를 사용할 수 없습니다. 잠시 (몇 분) 기다린 후 서버를 시작할 수 있다면 포트 8080에서 실행중인 다른 응용 프로그램으로 인한 문제가 아닙니다.
명령 프롬프트에서 다음을 수행하십시오.
netstat -nb
참고 URL : https://stackoverflow.com/questions/6960019/how-do-i-find-which-application-is-using-up-my-port
반응형
'developer tip' 카테고리의 다른 글
종속성 속성의 변경 사항 수신 (0) | 2020.10.20 |
---|---|
How to assign padding to Listview item divider line (0) | 2020.10.20 |
Bash 스크립트에서 virtualenv 활성화를 소싱하는 방법 (0) | 2020.10.19 |
Google Maps API는 AJAX를 사용할 때만 "Uncaught ReferenceError : google is not defined"를 발생시킵니다. (0) | 2020.10.19 |
다중 / 인 테이블 유효? (0) | 2020.10.19 |