All of the sudden, when trying to start JBoss it appears to fail silently. When

All of the sudden, when trying to start JBoss it appears to fail silently. When checking the logs, I am getting the following error. Any insight into reasons why this could occur? I've pinged the DB server from the app server successfully, ports are open, and the connection strings are correct.

20:07:40,469 ERROR [org.hornetq.core.server] (Thread-2 (HornetQ-scheduled-threads-1691300573)) HQ224033: Failed to broadcast connector configs: java.io.IOException: Network is unreachable
at java.net.PlainDatagramSocketImpl.send(Native Method) [rt.jar:1.8.0_71]
at java.net.DatagramSocket.send(DatagramSocket.java:693) [rt.jar:1.8.0_71]
at org.hornetq.api.core.UDPBroadcastGroupConfiguration$UDPBroadcastEndpoint.broadcast(UDPBroadcastGroupConfiguration.java:136) [hornetq-core-client-2.3.25.Final-redhat-1.jar:2.3.25.Final-redhat-1]
at org.hornetq.core.server.cluster.impl.BroadcastGroupImpl.broadcastConnectors(Broadca...

log.rtf

OriginalPostID-200134

OriginalPostID-200134

  Discussion posts and replies are publicly visible

Parents
  • Review your standalone.xml. The error

    java.io.IOException: Network is unreachable

    indicates you've got clustering enabled in standalone.xml and the broadcasting addresses are unreachable over the network

    <socket-binding name="messaging-group" port="0" multicast-address="${jboss.messaging.group.address:233.252.134.135}" multicast-port="${jboss.messaging.group.port:9876}"/>
Reply
  • Review your standalone.xml. The error

    java.io.IOException: Network is unreachable

    indicates you've got clustering enabled in standalone.xml and the broadcasting addresses are unreachable over the network

    <socket-binding name="messaging-group" port="0" multicast-address="${jboss.messaging.group.address:233.252.134.135}" multicast-port="${jboss.messaging.group.port:9876}"/>
Children
No Data