启动项目时端口被占用解决方法

时间:2024-03-12 17:36:31

一.问题描述

在IntelliJ IDEA 中启动Tomcat服务器时就出现了如下图所示的错误:

img

The Tomcat connector configured to listen on port 1099 failed to start. The port may already be in use or the connector may be misconfigured.

二.解决办法

  找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口

  使用命令找出占用1099端口的进程,如下图所示:

netstat -aon|findstr 1099

img

查看占用端口的是什么进程

tasklist|findstr "3756"

然后关闭占用该端口的进程

taskkill -f -pid 3756
#或者
taskkill /T /F /PID 3756