ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

端口占用,且无法用netstat 命令找到对应端口的解决办法

2022-01-27 18:04:49  阅读:260  来源: 互联网

标签:解决办法 netstat stop 1099 端口 net your


出现这个问题的最大原因可能是,目标端口不在netstat 的管理范围, 所以需要重新设定范围
改解决方案来自 https://stackoverflow.com/a/66827598/12261182

Solution for those who can not find the process with netstat -aon command.
Some ports might be reserved by default in various networks. Therefore, if you can not find a :1099 port with netstat -aon command you need to check your reserved ports first.

netsh interface ipv4 show excludedportrange protocol=tcp

Port 1099 might show up as a reserved one in the list. However, it was not the case for me. I decided to try to make an exception for it anyway. It worked!

Follow these steps:

Make sure to copy this text to your notepad, because you will lose internet connection for a moment.

Open your CMD as an administrator.

Write these commands one by one in order to stop your network:

net stop winnat

net stop LanmanWorkstation

net stop WlanSvc

net stop WwanSvc

Exclude port 1099 from a reserved list:

将1099 指定为你自己的目标检测端口(要找的端口),一下命令将会以你指定的端口为起点 (不包括),连续后四个端口都将从不维护端口列表中剔除

netsh int ipv4 add excludedportrange protocol=tcp startport=1099 numberofports=4

Start your network again:

net start winnat

net start LanmanWorkstation

net start WlanSvc

net start WwanSvc

Done.

Temporary solution.
Simply changing JMX port to 1599 inside of the IntelliJ IDEA also solved this issue for me.

标签:解决办法,netstat,stop,1099,端口,net,your
来源: https://www.cnblogs.com/jaycethanks/p/15850650.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有