日期:2014-05-16  浏览次数:20634 次

Linux查看端口占用情况

1.netstat

netstat -aon| grep 8080

?2.ps

ps -ef |grep 8080

?3.lsof

lsof -i:8080

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