开发技巧 | 第三篇 windows端口被占用的解决方法
发布时间
阅读量:
阅读量

文章目录
- 第3章 Windows 端口被占用及解决方法
- 第3章第3.1节 查看指定端口的占用情况
- 第3章第3.2节 通过 PID 获取相关进程信息
- 第3章第3.3节 通过 PID 杀死相应进程
- 总结
- 第3章第3.1节 查看指定端口的占用情况
3.windows端口被占用及解决方法
3.1查看指定端口被占用情况
netstat -aon|findstr 7090
或
netstat -aon|findstr "7090"
最后一列数字为Pid、进程号

3.2根据PID查看对应的进程
tasklist|findstr 25328

还没有任何评论哟~
