Linux常用命令总结
作者:互联网
1.在Windows中查看端口使用情况,根据端口找到某个进程
(1) 查看所有端口使用情况:netstat -ano
-a 显示所有连接和监听端口。
-n 以数字形式显示地址和端口号。
-o 显示与每个连接相关的所属进程 ID。
(2) 只查看某个端口:netstat -ano |findStr 8081
![比如查看8081端](https://www.icode9.com/i/ll/?i=20210710181931245.png#pic_center)
标签:总结,8081,查看,netstat,ano,端口,常用命令,Linux,某个 来源: https://blog.csdn.net/weixin_43980461/article/details/118638644