查找所有端口:
centos: netstat -ntlp 或者 netstat -tunlp
windows: netstat -ano
查找某个特定端口:
centos: netstat -lnp|grep 端口号 或者 netstat -tunlp|grep 端口号
windows: netstat -ano|findstr 端口号
查找占用端口的进程详细信息:
centos: ps 进程号(PID)
windows: tasklist|findstr 进程号(PID)
根据PID杀死进程:
centos: kill -9 进程号
windows: taskkill /pid 进程号 -t -f