无法在Rhino中部署应用程序

时间:2017-12-13 08:38:27

标签: java java-ee rhino telecommunication

当我尝试在rhino服务器中部署我的应用程序时,我总是遇到异常

     javax.sip.SipException: error starting stack
        at com.opencloud.ob.ocsipra.fY.a(2.3.1.15:69)
        Caused by: java.net.BindException: Address already in use: bind
        at sun.nio.ch.Net.bind0(Native Method)
        at sun.nio.ch.Net.bind(Net.java:433)

        failed to activate RA entity, check RA entity configuration
        Cause: javax.sip.SipException: error starting stack
        at com.opencloud.ob.ocsipra.fY.a(2.3.1.15:69)

        Caused by: java.net.BindException: Address already in use: bind
        at sun.nio.ch.Net.bind0(Native Method)

以下是netstat命令的输出,

netstat -aon | findstr 5060

TCP 0.0.0.0:5060 0.0.0.0:0聆听1336   UDP 0.0.0.0:5060 1336

 netstat -aon | findstr 5061

TCP 10.111.115.147:58236 10.55.202.82:5061 ESTABLISHED 6364

netstat -aon | findstr 5062

1 个答案:

答案 0 :(得分:0)

当我使用 netstat -aon 命令查找进程时,它始终用于将进程名称指定为TCP和UDP,但在运行中使用 resmon.exe 可以查看资源监视器在哪里可以看到哪个软件正在使用该端口。我可以解决这个问题。

相关问题