Linux查看端口占用情况

1.netstat

netstat -anp| grep 8080

 ps

ps -aux |grep pid

 2.lsof

lsof -i:8080

 lsof是一个工具需要单独安装

相关推荐