码迷,mamicode.com
首页 > 系统相关 > 详细

在Linux上安装多Jboss个需要修改的端口

时间:2014-05-26 21:28:04      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:des   c   code   http   a   linux   

如果在一台机器上部署了多个jboss server,需要修改相关端口以避免端口冲突。目前确认需要修改的配置如下
一、vi $JBOSS_HOME/server/default/conf/jboss-service.xml
1、WebService端口
   <mbean code="org.jboss.web.WebService"
      name="jboss:service=WebService">
      <attribute name="Port">8083</attribute>

2、JNDI端口:
   <mbean code="org.jboss.naming.NamingService"
      name="jboss:service=Naming"
      xmbean-dd="resource:xmdesc/NamingService-xmbean.xml">
<attribute name="Port">1099</attribute>

<attribute name="Port">1098</attribute>

3、RMI端口:
   <mbean code="org.jboss.invocation.jrmp.server.JRMPInvoker"
      name="jboss:service=invoker,type=jrmp">
      <attribute name="RMIObjectPort">4444</attribute>
   </mbean>
   <mbean code="org.jboss.invocation.pooled.server.PooledInvoker"
      name="jboss:service=invoker,type=pooled">
<attribute name="ServerBindPort">4445</attribute>
   </mbean>

二、vi $JBOSS_HOME/server/default/deploy/jbossweb-tomcat55.sar/server.xml
1、HTTP端口:
   <Connector port="8080" address="${jboss.bind.address}"/>
   <Connector port="8009" address="${jboss.bind.address}"/>

三、vi $JBOSS_HOME/server/default/deploy/jms/uil2-service.xml
1、JMS:
     <mbean code="org.jboss.mq.il.uil2.UILServerILService">
          <attribute name="ServerBindPort">8093</attribute>

在Linux上安装多Jboss个需要修改的端口,布布扣,bubuko.com

在Linux上安装多Jboss个需要修改的端口

标签:des   c   code   http   a   linux   

原文地址:http://www.cnblogs.com/wayne173/p/3745967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!