WildFly CLI - Manipulating Paths: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 11: Line 11:
<pre>
<pre>
/path=test.path:add(path=/tmp)
/path=test.path:add(path=/tmp)
</pre>
This adds the following section to <tt>domain.xml</tt>:
<pre>
<domain ...>
    <extensions>
      ...
    </extensions>
    <paths>
        <path name="test.path" path="/tmp"/>
    </paths>
    ...
</domain>
</pre>
</pre>


The value set as such is pushed to hosts.
The value set as such is pushed to hosts.

Latest revision as of 07:44, 28 February 2016

Internal

Standalone

Domain

Adding a Domain-Level Path

/path=test.path:add(path=/tmp)

This adds the following section to domain.xml:

<domain ...>
    <extensions>
       ...
    </extensions>

    <paths>
        <path name="test.path" path="/tmp"/>
    </paths>
    ...
</domain>

The value set as such is pushed to hosts.