欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

windows端口占用查看命令(windows端口关闭工具)

程序员文章站 2023-11-16 23:53:52
一、前言idea关了,tomcat在跑的进程没关,导致占用了一个端口,而现在要用这个端口,没法用。二、操作1.查看进程号netstat -ano | findstr "端口号"# examplenet...

一、前言

idea关了,tomcat在跑的进程没关,导致占用了一个端口,而现在要用这个端口,没法用。

windows端口占用查看命令(windows端口关闭工具)

二、操作

1.查看进程号

netstat -ano | findstr "端口号"
# example
netstat -ano |findstr "1099"
windows端口占用查看命令(windows端口关闭工具)

2.杀掉进程

taskkill /f /t /im "进程号"
# example:
taskkill /f /t /im "16636"
windows端口占用查看命令(windows端口关闭工具)