查看端口被哪个进程占用:

netstat -antlp | grep prot

netstat -antlp | grep 8080


杀死某个进程:

kill pid

kill 16304


强制杀死某个进程:

kill -9 pid

kill -9 16034