解决IDEA运行Tomcat时出现的Error running 'Tomcat': Address localhost:1099 is already in use netstat不是内部命令

IDEA运行Tomcat时出现的"Error running 'Tomcat': Address localhost:1099 is already in use"

出现这个问题时,整个人都是懵懵的,因为IDEA刚启动运行的。

报错误的信息

解决方案:

    cmd输入两个命令

        1. netstat -ano|findstr 1099 

执行结果

        2.taskkill -f -pid 24680

执行结果

注意事项:如果taskkill -f -pid 24680命令权限不够,可以打开任务管理器,关闭pid为24680的进程

任务管理器关闭进程

你可能感兴趣的:(解决IDEA运行Tomcat时出现的Error running 'Tomcat': Address localhost:1099 is already in use netstat不是内部命令)