WildFly Transaction Subsystem Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:


=Set Unique Node Identifier=
=Set Unique Node Identifier=
If a unique node identifier is not set in domain mode, you'll get this:
<pre>
18:55:02,298 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 37) JBAS010153: Node identifier property is set to the default value. Please make sure it is unique.
</pre>
To eliminate the warning, configure <tt>[[domain.xml]]</tt> as follows:
<pre>
    <subsystem xmlns="urn:jboss:domain:transactions:1.5">
        <core-environment node-identifier="${jboss.node.name}">
            ...
        </core-environment>
        ...
    </subsystem>
</pre>
Also see [JBoss7SystemProperties#Jboss.node.name].

Revision as of 04:46, 12 February 2016

Internal

Set Unique Node Identifier

If a unique node identifier is not set in domain mode, you'll get this:

18:55:02,298 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 37) JBAS010153: Node identifier property is set to the default value. Please make sure it is unique.

To eliminate the warning, configure domain.xml as follows:

    <subsystem xmlns="urn:jboss:domain:transactions:1.5">
        <core-environment node-identifier="${jboss.node.name}">
            ...
        </core-environment>
        ...
    </subsystem>


Also see [JBoss7SystemProperties#Jboss.node.name].