Hello,
To make two ports point to the same server we need to edit the
server.xml file in the
path: /deploy/jbossweb-tomcat55.sar
We have to add additionally one more connector with the required port number.
Already server.xml file has,
| <Connector port="5050" address="${jboss.bind.address}"
| maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
| emptySessionPath="true"
| enableLookups="false" redirectPort="8443" acceptCount="100"
| connectionTimeout="20000" disableUploadTimeout="true"/>
|
Just need to add the following lines,
| <Connector port="5051" address="${jboss.bind.address}"
| maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
| emptySessionPath="true"
| enableLookups="false" redirectPort="8443" acceptCount="100"
| connectionTimeout="20000" disableUploadTimeout="true"/>
|
Now, the server has point to two ports 5050 and 5051.
Regards,
Visolve JBoss Team.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949773#3949773
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949773
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user