4

Wildfly 8:

  1. Where are the deployed war files located on the server file system?

  2. How do I download them? I tried using the JBoss CLI as well as the Web Interface.

anon
  • 1,071
  • 2
  • 8
  • 19

4 Answers4

5

Found the war files to be located here. In this directory I found several subdirectories. The war files were all named content and did not have an extension. I could figure out what they were based on file size and timestamp.

wildfly location\standalone\data\content
anon
  • 1,071
  • 2
  • 8
  • 19
0

You want the files 'after' they have been deployed? This generally isn't a good idea as it isn't guaranteed to be exactly the same as the source archive.

The standard location for the deployment archives is ./standalone/deployments/ although this can be changed in the configuration.

After an archive is deployed you can see the exact location of there the deployed archive came from in the configuration, it will be written to the bottom of the xml file.

Tea Curran
  • 2,923
  • 2
  • 18
  • 22
0

There is a download button to download the .war in the management console localhost:9990 click the view button near your war on top you will find a download icon

Arun VC
  • 115
  • 3
-1

I found it in the %WILDFLY_HOME%\standalone\temp\ directory. If it is not present there then you can perform a search in all the subdirectories of the wildfly.

tausif
  • 141
  • 1
  • 8