【发布时间】:2011-10-21 01:28:25
【问题描述】:
我无法启动 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.
【问题讨论】:
-
这节省了我的时间,但它属于 superuser.com,我希望有办法在 stackexchange 站点之间移动问题
-
在使用 C# 在 VS 2017 中开发 Web 服务时,这个问题/答案阻止了我每 2 小时重新启动一次计算机......虽然它与编程没有直接关系,但它间接地对所有人都非常有帮助我们开发套接字。
-
那么您正在查看哪个应用程序正在使用端口 8080?首先在cmd中输入这个命令..... netstat -ano | findstr :8080 这个或类似的你会看到 TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 4492 现在你知道使用端口 8080 的应用程序的 id 然后在这段代码中找到使用 id 类型的应用程序和你的 id,(在我的案例 4492) 任务列表 | findstr 4492 然后给你。 Tomcat9.exe 4492 服务 0 77.988 K
标签: windows port windows-vista netstat