WildFly CLI - Manipulating Paths: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * WildFly CLI Operations") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
* [[WildFly CLI Operations#Subjects|WildFly CLI Operations]] | * [[WildFly CLI Operations#Subjects|WildFly CLI Operations]] | ||
=Standalone= | |||
=Domain= | |||
==Adding a Domain-Level Path== | |||
<pre> | |||
/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> | |||
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.