一、linux查看端口号
Linux 查看端口占用情况可以使用 lsof 和 netstat 命令。
1、lsof
lsof(list open files)是一个列出当前系统打开文件的工具。
lsof 查看端口占用语法格式:
lsof -i:端口号
lsof -i:8000 查看服务器 8000端口的占用情况
2、netstat
netstat -tunlp 用于显示 tcp,udp 的端口和进程等相关情况。
netstat查看端口占用语法格式:
netstat -tunlp | grep 端口号
-t (tcp) 仅显示tcp相关选项
-u (udp)仅显示udp相关选项
-n 拒绝显示别名,能显示数字的全部转化为数字
-l 仅列出在Listen(监听)的服务状态
-p 显示建立相关链接的程序名
netstat -tunlp | grep 8000 查看 8000 端口的情况
netstat -ntlp //查看当前所有tcp端口
netstat -ntulp | grep 80 //查看所有80端口使用情况
netstat -ntulp | grep 3306 //查看所有3306端口使用情况
3、杀死进程
在查到端口占用的进程后,如果你要杀掉对应的进程可以使用 kill 命令:
kill -9 PID
8000 端口对应的 PID 为 26993,使用以下命令杀死进程:kill -9 26993
二、Windows查看端口号
1、查找所有运行的端口
netstat -ano
2、查看被占用端口对应的PID
netstat -aon|findstr "2002"
3、查看指定 PID 的进程
tasklist|findstr "9088"
4、结束进程
taskkill /f /t /pid 9088 强制(/F参数)杀死 pid为9088所有进程包括子进程(/T参数)