Address already in use: JVM_Bind java

后端 未结 13 2515
离开以前
离开以前 2020-11-30 03:33

Some times whenever I restart the application, which is built on Java Struts Mysql and Jboss 4.05 Version I get the error as Address already in use: JVM_Bind

13条回答
  •  一向
    一向 (楼主)
    2020-11-30 04:21

    That error means that the you are trying to create a new ServerSocket on a port already in use by another ServerSocket. So try to make your application closing all sockets and connections you know about and be sure your application is completely terminated. Also check if there is another proces you launched by your program.

提交回复
热议问题