当前位置:网站首页>端口占用问题,10000端口
端口占用问题,10000端口
2022-06-11 08:38:00 【Cyclo-】
假如我们需要确定谁占用了我们的10000端口
1.可以使用win + R 输入cmd打开命令行窗口
2.使用命令 netstat -aon|findstr "10000"
查看指定端口的占用情况, 可以将10000改成被占用的端口号,最后的5516就是PID。
3.查看PID对应的进程
tasklist|findstr "5516"
可以看到占用端口的程序
4.结束该进程
如果进程无关紧要,那么就执行 taskkill /f /t /im SangforPromoteService.exe
(SangforPromoteService.exe是深圳一家公司的程序 Sangfor Technologies Co.,Ltd 深信服VPN设备的一个进程,可以进行关闭)
一般到上面那里就结束了,但是也有例外的情况
1.比如这样
错误: 无法终止 PID 5516 (属于 PID 944 子进程)的进程。
原因: 拒绝访问。
1查了一下944是window服务进程,那可就不能结束它了。
那就去服务进程看看

确实有这两个进程
把它们都停止,然后启动类型改为手动。
重新查询,就会发现没有占用了
还有一种例外情况,我写在另一篇文章了
解决80端口占用Identify and stop the process that‘s listening on port 80 or configure this application
边栏推荐
- leetcode - 460. LFU cache
- 显示器要申请BS 476-7 怎么送样?跟显示屏一样吗
- Matlab学习8-图像处理之线性与非线性锐化滤波、非线性平滑滤波
- 指定环境下安装Jupyter
- 显示屏DIN 4102-1 Class B1防火测试要求
- Introduction to knowledge atlas -- yedda annotation
- Anaconda related knowledge supplement (spyder+keras Library)
- torch. Var (), sample variance, parent variance
- Interprocess communication
- AS 3744.1标准中提及ISO8191测试,两者测试一样吗?
猜你喜欢
![[software tools] screen recording software captura](/img/79/705bb40fc15322243880f3b9864f2b.jpg)
[software tools] screen recording software captura

leetcode - 518. 零钱兑换 II

结果和目标出入太大?不妨借助目标管理精准直达目标!

centos随笔03:centos8.2安装mysql

Matlab学习9-图像处理之非线性锐化滤波

Qiao lerna: lerna auxiliary tool

leetcode - 230. 二叉搜索树中第K小的元素

Qiao NPMS: get the download volume of NPM packages

Don't want the project out of control? You need to use project management tools

标准化编写知识
随机推荐
显示器要申请BS 476-7 怎么送样?跟显示屏一样吗
Anaconda related knowledge supplement (spyder+keras Library)
[programming development] markdown notes tutorial
Entity class conversion cannot be reassigned
bat 批处理单独环境打包
Classical graph theory, depth first and breadth first, topology, prim and krukal, it's time to review
一些学习记录i=
CentOS essay 03:centos8.2 installing MySQL
利用docker-compose搭建redis5集群
光伏板怎么申请ASTM E108阻燃测试?
哪些Apple设备支持这次系统更新?来看你的旧Apple设备支持最新系统吗
SAP 物料主数据归档
B+ super tree helps you know the underlying structure of MySQL
Matlab学习7-图像处理之线性平滑滤波
Modifying field length in Oracle and postgrepsql
Heap can also be regarded as a tree structure. It is specified that the root node must be greater than or less than the left and right child nodes, but the size order of the left and right child nodes
Idea pulls items from remote warehouse
Installation (detailed illustration) and use of SVN
GCC AVR(Atmel Studio+ AVR Studio)如何将结构体数组定义在程序存储器(flash)空间并进行读操作
ActiveMQ simple tutorial, suitable for beginners, learning notes yyds