zoukankan      html  css  js  c++  java
  • IDEA启动报错-java.net.BindException: Address already in use: bind

    启动IDEA报错日志如下:

    Internal error. Please refer to http://jb.gg/ide/critical-startup-errors

    java.net.BindException: Address already in use: bind
        at java.base/sun.nio.ch.Net.bind0(Native Method)
        at java.base/sun.nio.ch.Net.bind(Net.java:461)
        at java.base/sun.nio.ch.Net.bind(Net.java:453)
        at java.base/sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:227)
        at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:132)
        at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:551)
        at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1345)
        at io.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:503)
        at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:488)
        at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:984)
        at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:247)
        at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:355)
        at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163)
        at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:416)
        at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:515)
        at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:918)
        at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
        at java.base/java.lang.Thread.run(Thread.java:834)

    IDEA官网问题:Critical Internal Error on Startup of IntelliJ IDEA: "Cannot Lock System Folders"

    类似问题:https://github.com/docker/for-win/issues/3171

    问题来源:

    hypervisior(Windows 10的Hyper-V虚拟机),把端口保留了

    IDEA需要在端口6942~6991间找到一个可用端口并绑定(bind)

     

    解决方案:

    enashed commented on Jan 31, 2019  (原链接:https://github.com/docker/for-win/issues/3171#issuecomment-459205576
     
     
     

    @veqryn the workaround worked for me, the steps are:

    1. Disable hyper-v (which will required a couple of restarts)
      dism.exe /Online /Disable-Feature:Microsoft-Hyper-V

    2. When you finish all the required restarts, reserve the port you want so hyper-v doesn't reserve it back
      netsh int ipv4 add excludedportrange protocol=tcp startport=<端口号> numberofports=1

    3. Re-Enable hyper-V (which will require a couple of restart)
      dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All

    when your system is back, you will be able to bind to that port successfully.

    请把端口号改成6942~6991间的任一个数字

    --------蓝天上的云_转载请注明出处.
  • 相关阅读:
    git使用记录
    【转】话说我打算一天学完object c语法,系列1--------来自书Objective-c程序设计
    【转】看源代码那些事
    中英文对照 —— 数学定律定理(公式及其描述)
    CUDA+OpenGL混合编程
    简明欧洲史
    简明欧洲史
    CUDA一维纹理内存
    CUDA中的常量内存__constant__
    CUDA线程协作之共享存储器“__shared__”&&“__syncthreads()”
  • 原文地址:https://www.cnblogs.com/yucloud/p/12182417.html
Copyright © 2011-2022 走看看