windows查询端口占用命令 windows查看端口号被占用的命令



文章插图
windows查询端口占用命令 windows查看端口号被占用的命令

文章插图
一、前言
idea关了,tomcat在跑的进程没关,导致占用了一个端口,而现在要用这个端口,没法用 。
二、操作
【windows查询端口占用命令 windows查看端口号被占用的命令】1.查看进程号
netstat -ano | findstr "端口号"# examplenetstat -ano |findstr "1099"
2.杀掉进程
taskkill /f /t /im "进程号"# example:taskkill /f /t /im "16636"