#Wildfly Toolbelt
Basically, you need to open domain.xml
under WILDFLY_HOME/domain/configuration
and find the <deployments>
session. In that session, each deployment contain a <content>
tag. The attribute sha1
contains details where the file is storaged on the filesystem. EG:
<deployments>
<deployment name="test-application.war"
runtime-name="test-application.war">
<content sha1="dda9881fa7811b22f1424b4c5acccb13c71202bd"/>
</deployment>
</deployments>
The file test-application.war
is storaged in the folder dd
(the first 2 chars) under the folder a9881fa7811b22f1424b4c5acccb13c71202bd
(same hash, without the 2 first chars) on the content
file. Like above:
ls $WILDFLY_HOME/domain/data/content
...
|---/dd
|-----a9881fa7811b22f1424b4c5acccb13c71202bd
- ModCluster troubleshooting: http://www.mastertheboss.com/jboss-server/jboss-cluster/troubleshooting-mod-cluster
- Timeout Hierarchy: https://access.redhat.com/solutions/31400