windows终止端口
windows kill port
netstat -ano | findstr 5678 // 查找端口为 5678 的进程,同时显示pid
taskkill /f /pid 19696 // /F: 指定强制终止进程。
netstat -ano | findstr 5678 // 查找端口为 5678 的进程,同时显示pid
taskkill /f /pid 19696 // /F: 指定强制终止进程。