Problems accessing Wildfly server 8

0

I have a web application which I use a Wildfly 8 server to distribute. Accessing the application from the server, I mean, localhost, recognizes me without problem and raises the application, but when I try to access from a PC connected to the network does not recognize that application, not even the initial page of the server.
If I use a Tomcat server, if it recognizes me and opens at least the index, but due to the functionality of it it does not leave me any other option than to use an application server. I do not know if there is any configuration that I have to do in the server's HOME or something like that. I would greatly appreciate the help!

    
asked by Carlos 08.05.2017 в 21:18
source

1 answer

1

By default -I think that for security reasons-, JBoss / WildFly only makes the binding of the ports for the localhost IP.

To raise it so that it does the binding with another IP of the machine, it is necessary to pass the IP (either by the bat / sh of configuration, or by parameter).

From command line it would be

standalone.bat -b 190.10.12.35

If instead of the IP you pass 0.0.0.0 , it gets up for all the IPs of the machine. It's what I usually do (so there's no problem if you sign in with localhost).

More details here , even if they are in an unknown language ...

    
answered by 08.05.2017 / 21:48
source