Linux下怎样查看某个端口被哪个程序占用了

Linux下怎样查看某个端口被哪个程序占用了

查看进程ID:

lsof -w -n -i tcp:8080
fuser -n tcp 8080
netstat -anp|grep :8080[[:blank:]]

杀掉占用端口的进程PID:

kill -9 pidnumber

你可能感兴趣的:(Linux下怎样查看某个端口被哪个程序占用了)