技术 Windows10下Tomcat端口被占用解决 打开cmd(快捷键:win+R) 输入 netstat -ano|findstr port (此处port为你的tomcat使用的端口号),比如我的tomcat使用的是8080,则输入n... 11月19日浏览:81 评论 阅读全文
技术 win和Linux下端口占用解决 windows cmd netstat -aon | findstr "端口号" 然后在任务管理器关闭该PID的进程。 linux netstat -anl | grep "端口号" lsof -i:... 11月05日浏览:149 评论 阅读全文