JBoss AS 7.1 JBREM000200:远程连接失败:java.io.IOException:已建立的连接被主机中的软件中止

时间:2016-07-25 01:10:47

标签: java eclipse java-ee jboss jboss7.x

我在JEE Eclipse上安装了JBoss Application 7.1。由于一些问题,我在JBoss的standalone.xml中将端口号从8080更改为8085。

当我在eclipse中启动JBoss服务器时,我得到以下错误。

19:36:39,377 ERROR [org.jboss.remoting.remote.connection] (Remoting "minint-97d33fp:MANAGEMENT" read-1) JBREM000200: Remote connection failed: java.io.IOException: An established connection was aborted by the software in your host machine

19:36:39,388 ERROR [org.jboss.remoting.remote.connection] (Remoting "minint-97d33fp:MANAGEMENT" read-1) JBREM000200: Remote connection failed: java.io.IOException: An established connection was aborted by the software in your host machine

2 个答案:

答案 0 :(得分:1)

如果手动更改端口号,则需要更改许多地方。为简化此过程,Jboss添加了一个偏移功能。只需要设置偏移值,所有相关端口都会相应更新。

所以请尝试这种方法。在独立的xml中,更新以下行:

<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">

使用您的偏移值将更新为:

<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:5}">

希望有所帮助。 (别忘了先纠正你的第一次改变)

答案 1 :(得分:0)

如果要在Eclipse中部署,请尝试重新启动Eclipse。

如果不起作用,则找到正在使用该端口的进程并终止它。

如果不起作用,请重新启动计算机。