Linux查看端口占用情况
1.netstat
netstat -aon| grep 8080
?2.ps
ps -ef |grep 8080
?3.lsof
lsof -i:8080
?lsof是一个工具需要单独安装