当前位置:网站首页>解决端口占用问题
解决端口占用问题
2022-08-05 05:13:00 【Ly666_ever】
一、打开命令窗口或者power shell
命令窗口:开始—->运行—->cmd(window+R 组合键)
PowerShell:开始—->运行—->PowerShell (也可以直接搜索PowerShell)
二、查找所有运行的端口
输入命令:
netstat -ano

三、查看被占用端口对应的 PID
输入命令:
netstat -aon|findstr "2008"
四、查看指定 PID 的进程
输入命令:
tasklist|findstr "8912"
五、结束进程
强制(/F参数)杀死 pid 为 8912 的所有进程包括子进程(/T参数):
taskkill /T /F /PID 8912
边栏推荐
猜你喜欢

将照片形式的纸质公章转化为电子公章(不需要下载ps)

【过一下6】机器视觉视频 【过一下2被挤掉了】
![[Student Graduation Project] Design and Implementation of the Website Based on the Web Student Information Management System (13 pages)](/img/86/9c9a2541f2b7089ae47e9832fffdb3.png)
[Student Graduation Project] Design and Implementation of the Website Based on the Web Student Information Management System (13 pages)

【练一下1】糖尿病遗传风险检测挑战赛 【讯飞开放平台】

第二讲 Linear Model 线性模型

第5讲 使用pytorch实现线性回归

span标签和p标签的区别

使用二维码解决固定资产管理的难题

位运算符与逻辑运算符的区别

jvm 三 之堆与栈
随机推荐
Reverse theory knowledge 4
【记一下1】2022年6月29日 哥和弟 双重痛苦
range函数作用
Algorithms - ones and zeros (Kotlin)
Requests库部署与常用函数讲解
redis事务
In Opencv, imag=cv2.cvtColor(imag,cv2.COLOR_BGR2GRAY) error: error:!_src.empty() in function 'cv::cvtColor'
day11-函数作业
Mysql5.7 二进制 部署
Matplotlib(三)—— 实践
Dashboard Display | DataEase Look at China: Data Presents China's Capital Market
server disk array
Returned object not currently part of this pool
CAP+BASE
2022牛客多校第四场C.Easy Counting Problem(EGF+NTT)
[Student Graduation Project] Design and Implementation of the Website Based on the Web Student Information Management System (13 pages)
【过一下14】自习室的一天
"PHP8 Beginner's Guide" A brief introduction to PHP
Understanding and use of C# on set() and get() methods
Pycharm中使用pip安装第三方库安装失败:“Non-zero exit code (2)“的解决方法