原文参见:https://www.cnblogs.com/liuyanxia/p/6755520.html
解决办法
找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口
使用命令:netstat -aon|findstr 1099 找出占用1099端口的进程,如下图所示:
然后关闭占用该端口的进程:taskkill -f -pid 3756
这样就可以正常启动Tomcat了.
原文参见:https://www.cnblogs.com/liuyanxia/p/6755520.html
找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口
使用命令:netstat -aon|findstr 1099 找出占用1099端口的进程,如下图所示:
然后关闭占用该端口的进程:taskkill -f -pid 3756
这样就可以正常启动Tomcat了.
来源:https://www.cnblogs.com/jasonboren/p/11926236.html