WildFly Deployment Concepts: Difference between revisions
Jump to navigation
Jump to search
Migrating from https://home.feodorov.com:9443/wiki/Wiki.jsp?page=JBoss7Deployment
No edit summary |
|||
Line 15: | Line 15: | ||
=Deployment Artifact Repository= | =Deployment Artifact Repository= | ||
The domain-wide deployment artifact repository is located on the controller host, under $JBOSS_HOME/domain/data/content. The content is maintained in a two-level directory structure named based on the content's hash. The names of the first level directories consist of the first two characters of content hashes. A second-level directory name contains the rest of the hash, and the directory contains the content itself, as a file named "content". | |||
Example: | |||
<syntaxhighlight lang='xml'> | |||
<domain ...> | |||
... | |||
<deployments> | |||
... | |||
<deployment name="test-servlet.war" runtime-name="test-servlet.war"> | |||
<content sha1="e85e00cddbae1752cb7eaaa73adb1eed09787d70"/> | |||
</deployment> | |||
</deployments> | |||
</domain> | |||
</syntaxhighlight> | |||
domain | |||
| | |||
+-- data | |||
| | |||
+-- content | |||
| | |||
+-- e8 | |||
| | |||
+-- 5e00cddbae1752cb7eaaa73adb1eed09787d70 | |||
| | |||
+ | |||
Also see {{Internal|WildFly CLI - Deployment and Undeployment#Overview|WildFly CLI Deployment/Undeployment}} | Also see {{Internal|WildFly CLI - Deployment and Undeployment#Overview|WildFly CLI Deployment/Undeployment}} |
Revision as of 19:13, 19 September 2017
Internal
Standalone Mode Deployments
Location of the Deployment Artifacts on the File System
Domain Mode Deployments
Location of the Deployment Artifacts on the File System
Deployment Artifact Repository
The domain-wide deployment artifact repository is located on the controller host, under $JBOSS_HOME/domain/data/content. The content is maintained in a two-level directory structure named based on the content's hash. The names of the first level directories consist of the first two characters of content hashes. A second-level directory name contains the rest of the hash, and the directory contains the content itself, as a file named "content".
Example:
<domain ...>
...
<deployments>
...
<deployment name="test-servlet.war" runtime-name="test-servlet.war">
<content sha1="e85e00cddbae1752cb7eaaa73adb1eed09787d70"/>
</deployment>
</deployments>
</domain>
domain | +-- data | +-- content | +-- e8 | +-- 5e00cddbae1752cb7eaaa73adb1eed09787d70 | +
Also see