Domain.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=Internal=
=Internal=


* [[WildFly Configuration#Configuration_Files|WildFly Configuration]]
* [[WildFly Domain Mode Configuration]]
* [[WildFly Domain Mode Configuration]]



Revision as of 16:27, 1 November 2016

Internal

Overview

domain.xml is the main configuration file for a managed domain, containing various profiles to be pushed to different servers belonging to the server groups managed by the domain. Only the domain master reads this file. RedHat documentation mentions that domain.xml can be removed on other domain members. However, it should not be removed from the backup domain controller, if the domain is configured to support HA. For more details see subordinate host controller post-install configuration - optionally remove domain.xml. The file's location is $JBOSS_HOME/domain/configuration/domain.xml.

Sections

<server-group>

The <server-group> section defines the server groups for this management domain.

The server group configuration specifies the following mandatory attributes:

  • the name of the server group
  • the server group profile
  • the socket binding group for the servers in the group. This value can be overridden in host.xml.

It also can specify optional attributes:

<server-group> Example

<domain>
    ...
    <server-groups>
        <server-group name="agents" profile="ha">
            <jvm name="default">
                <heap size="1000m" max-size="1000m"/>
                <permgen max-size="256m"/>
            </jvm>
            <socket-binding-group ref="ha-sockets"/>
            <deployments>
                <deployment name="something.ear" runtime-name="something.ear"/>
            </deployments>
        </server-group>
        <server-group name="claims" profile="full-ha">
            <jvm name="default">
                <heap size="1000m" max-size="1000m"/>
                <permgen max-size="256m"/>
            </jvm>
            <socket-binding-group ref="full-ha-sockets"/>
        </server-group>
    </server-groups>
</domain>