【发布时间】:2021-08-10 06:45:08
【问题描述】:
Web 服务器无法启动,并且端口 10086 已在 IntelliJ IDEA 2021 中使用。当我运行 netstat -ano |findstr 10086 时,终端中没有任何输出。这里有什么问题?
有什么帮助吗?
PS C:\Windows\System32> netstat -ano |findstr 10086
PS C:\Windows\System32>
控制台输出:
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 10086 was already in use.
Action:
Identify and stop the process that's listening on port 10086 or configure this application to listen on another port.
(LoggingFailureAnalysisReporter.java:40)
【问题讨论】:
-
识别并停止正在侦听端口 10086 的进程或将此应用程序配置为侦听另一个端口。 - 还有什么要做的?
-
@ScaryWombat 如何在 Windows 上找到监听 10086 端口的进程?使用此命令
netstat -ano |findstr 10086,我在终端中没有任何输出。
标签: java spring-boot intellij-idea