在域模式下使用负端口偏移量配置JBoss 7.x.

时间:2017-02-26 05:27:40

标签: jboss jboss7.x

我想在独立模式和域模式下将JBoss 7的默认端口更改为5050:

http://localhost:5050

在standlone模式下,我只是在standlone.xml中更改了以下属性:

<socket-binding name="http" port="5050"/>

但是,在域模式下,我可以选择仅更改host.xml中的偏移量:

<server name="server-one" group="main-server-group">
        <!-- Remote JPDA debugging for a specific server
        <jvm name="default">
          <jvm-options>
            <option value="-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n"/>
          </jvm-options>
       </jvm>
       -->
    <socket-bindings port-offset="5"/>

    </server>
    <server name="server-two" group="main-server-group" auto-start="true">
        <!-- server-two avoids port conflicts by incrementing the ports in
             the default socket-group declared in the server-group -->
        <socket-bindings port-offset="10"/>
    </server>

当我尝试设置负端口偏移时,启动脚本会抛出错误。如何在域模式下将端口从8080更改为5050?

1 个答案:

答案 0 :(得分:0)

在host.xml中为&#34; jboss.http.port&#34;创建系统属性喜欢:

    <server name="server-two" group="main-server-group" auto-start="true">
        <system-properties>
            <property name="jboss.http.port" value="4950" boot-time="true"/>
        </system-properties>
        <socket-bindings port-offset="100"/>
    </server>

请确保必须从5050扣除端口偏移值。