上课过程中使用Eclipse过程中 终端8080被占用 无法运行不知道怎么删除终端8080求解决
关闭orcal 或者修改端口https://blog.csdn.net/weixin_32223625/article/details/116342433 参考一下这个
1.Win+R 打开运行 ,输入cmd 打开命令行窗口 。
2.假设要查询端口8080被占用情况,在命令行下输入:netstat -aon|findstr "8080"
3.得到进程号,继续输入命令: tasklist|findstr "进程号"
4.得到进程映像名称 TNSLSNR.EXE
5、最后在任务管理器中结束
第二种是学校机房有自动还原,可以关机重启,不行就卸载重装,方法多多
netstat -aon|findstr "8080"
taskkill /pid xxxx -t -f
win+R输入cmd打开命令行,
输入netstat -aon|findstr "8080"
taskkill /pid xxxx -t -f