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

linux下查看端口地址占用
查看端口是否被占用:
netstat -apn|grep port
查看被哪个进程占用:
lsof -i:port
查看具体进程
ps -ef|grep PID