Jun 27, 2008

Changing the JBoss AS Binding Address

By default, the JBoss AS only listen to localhost, every connection from host other than localhost will be blocked.

To change this behavior, open the %JBOSS_HOME%\server\default\deploy\jboss-web.deployer\server.xml

modify the address in the tab <Connector port="8080" address="${jboss.bind.address}" to <Connector port="8080" address="0.0.0.0"

The server will work perfectly

0 comments: