3.2.3
The deploy/jbossweb-tomcat41.sar/META-INF/jboss-service.xml file contains an embedded version of the standalone tomcat server.xml that contains the connectors and port settings.
3.2.4
The deploy/jbossweb-tomcat50.sar/server.xml file is the equivalent of the standalone tomcat server.xml that contains the connectors and port settings:
...
<!-- A HTTP/1.1 Connector on port 8080 -->
<Connector port="8080" address="${jboss.bind.address}"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"></Connector>
<!-- A AJP 1.3 Connector on port 8009 -->
<Connector port="8009" address="${jboss.bind.address}"
enableLookups="false" redirectPort="8443" debug="0"
protocol="AJP/1.3"></Connector>
Where is the jboss.bind.address configured?
jboss.bind.address is configured using the "-b" option to the JBoss startup script (run.sh or run.bat in the bin directory). For example, run -b 0.0.0.0 enables jboss to listen for connections on all IP addresses of the machine (if multi-homed).
Where is the -b option documented?
The -b option is documented here: JBossRunParameters.
Comments