1. 开始-运行-cmd (右击管理员身份运行)
2. netstat -ano 查看所有端口
3.查看被占用端口对应的PID
a.netstat -ano
b.netstat -ano|findstr "4300"
c:任务管理器中查看
在进程列显示PID
4. 查看占用端口的进程
a. tasklist|findstr "2320"
b.任务管理器
5. 结束进程
a.taskkill /f /t /im 进程名
b. 任务管理器
时间: 2024-11-02 22:50:00