Address already in use: JVM_Bind java

后端 未结 13 2540
离开以前
离开以前 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:06

    Address already in use: JVM_Bind

    means that some other application is already listening on the port your current application is trying to bind.

    what you need to do is, either change the port for your current application or better; just find out the already running application and kill it.

    on Linux you can find the application pid by using,

    netstat -tulpn
    

提交回复
热议问题