其他分享
首页 > 其他分享> > ERROR--Disconnected from the target VM, address : '127.0.0.1:6847' , transport : 'soc

ERROR--Disconnected from the target VM, address : '127.0.0.1:6847' , transport : 'soc

作者:互联网

Disconnected from the target VM, address : '127.0.0.1:6847' , transport : 'socket'

原因分析1 服务器采用的Tomcat,编译打包方式未设置war【默认打包方式是jar】
场景 启动项目时无法启动image

1、在pom.xml中设置打包方式为war
image-20220727191657448

原因分析2 端口被占用
场景 启动项目时无法启动image

1、首先查看端口的启动情况

​ Win+R 输入cmd打开DOS命令框,输入 netstat -ano | findstr 8060 【其中8060就是运行项目的端口号】image
显示这种,说明后台8060端口还在运行,PID为10316,所以杀掉端口进程,重启项目程序就行

2、杀掉进程,两种方法任选其一

​ 2.1、Ctrl + alt + delete , 启动任务管理器,根据PID找到对应的程序,右键点击结束任务即可image

​ 2.2、根据 tasklist | findstr 10316 ,查询是什么程序正在占用8060端口,其中10316就是上面查询到的PID。image

​ 直接继续执行 taskkill /f /t /im java.exe 即可
​ (或者)直接执行 taskkill /pid 10316 -t -f 强制杀掉进程

标签:127.0,target,启动,--,PID,杀掉,端口,10316,8060
来源: https://www.cnblogs.com/cxy-lxl/p/16609250.html