samy omar [
https://community.jboss.org/people/samyomar82] created the discussion
"Re: JBoss AS 7.1 Final continuing starting Then it show failed to start
messege"
To view the discussion, visit:
https://community.jboss.org/message/717740#717740
--------------------------------------------------------------
Hay all
I solved this issue
This is because I made change in standalone.xml to let the AS able to accept remote HTTP
invoications
I did this change which produce the issue
<interface name="public">
<any-address/>
</interface>
while the correct modifications is
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
<interface name="*any*">
*<any-ipv4-address/>*
</interface>
<socket-binding-group name="standard-sockets"
default-interface="*any*"
port-offset="${jboss.socket.binding.port-offset:0}">
--------------------------------------------------------------
Reply to this message by going to Community
[
https://community.jboss.org/message/717740#717740]
Start a new discussion in JBoss Tools at Community
[
https://community.jboss.org/choose-container!input.jspa?contentType=1&...]