端口占用
一般来说直接在windows使用如下两个命令就可以直接解决
1 |
|
1 |
|
可我这次尝试了很多次查看端口, 都没有找到对应的PID显示
先把如下的命令, 拷贝到记事本, 然后再打开管理员CMD, 依次输入, 在输入命令的过程会暂时给互联网断开连接
netsh interface ipv4 show excludedportrange protocol=tcp
net stop winnat
net stop LanmanWorkstation
net stop WlanSvc
net stop WwanSvc
netsh int ipv4 add excludedportrange protocol=tcp startport=63010 numberofports=4
#把63010换成自己被占用的端口和数量
#63010-63013
net start winnat
net start LanmanWorkstation
net start WlanSvc
net start WwanSvc
这时问题差不多就解决了
还有一种临时的解决方案
Simply changing JMX port to 1599 inside of the IntelliJ IDEA also solved this issue for me.
给 idea 的 JMX 端口设置成 1599
参考:
端口占用
https://xiamu.icu/Java/端口占用/