当前位置:网站首页>解决端口占用问题
解决端口占用问题
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
边栏推荐
- 数字_获取指定位数的小数
- Xiaobai, you big bulls are lightly abused
- 【过一下14】自习室的一天
- The role of the range function
- [Software Exam System Architect] Software Architecture Design ③ Domain-Specific Software Architecture (DSSA)
- Opencv中,imag=cv2.cvtColor(imag,cv2.COLOR_BGR2GRAY) 报错:error:!_src.empty() in function ‘cv::cvtColor‘
- 【过一下6】机器视觉视频 【过一下2被挤掉了】
- uva1325
- 【过一下 17】pytorch 改写 keras
- 【过一下12】整整一星期没记录
猜你喜欢
随机推荐
Lecture 5 Using pytorch to implement linear regression
day10-字符串作业
human weakness
第四讲 back propagation 反向传播
Error creating bean with name 'configDataContextRefresher' defined in class path resource
Flex layout frog game clearance strategy
Matplotlib(三)—— 实践
将照片形式的纸质公章转化为电子公章(不需要下载ps)
2022牛客多校第四场C.Easy Counting Problem(EGF+NTT)
第三讲 Gradient Tutorial梯度下降与随机梯度下降
Do you use tomatoes to supervise your peers?Add my study room, come on together
DOM及其应用
【过一下6】机器视觉视频 【过一下2被挤掉了】
『递归』递归概念与典型实例
BFC(Block Formatting Context)
Returned object not currently part of this pool
学习总结week3_1函数
ESP32 485 Illuminance
ES6 生成器
flex布局青蛙游戏通关攻略