tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)

使用IDEA运行Tomcat加载网页时遇到这样一个错误:
tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片

错误翻译:运行“Tomcat 8.5.20”时出错,地址localhost:8080已被使用。

解决方式: 第一、查找占用8080的端口号;
Win + R 打开命令提示符(以管理员身份运行) 。
tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片


第一种方式:输入:netstat -ano(查看所有端口号,比较不易查找,建议使用第二种方式)
tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片


第二种方式:输入:netstat -ano|findstr 8080
tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片

最后找到了是被22568占用的。

第二、打开 任务管理器 ,找不到就到电脑的搜索栏去搜索;
tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片


第三、选择 详细信息 ,点击 PID ,找到占用8080的端口号 22568 -> 结束进程(E);
【tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)】tomcat|IDEA运行Tomcat时遇到(Error running ‘Tomcat 8.5.20‘:Address localhost:8080 is already in use)
文章图片


完。

    推荐阅读