关于查看端口,杀死占用端口的进程

查找所有端口:

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

posted @ 2018-07-12 11:31  点点_滴滴  阅读(668)  评论(0编辑  收藏  举报