Deploy an archive with gasadmin
Use this procedure to deploy an archive on your Genero Application Server using the gasadmin tool.
As a prerequisite, you have a Genero Archive file.
Tip: It is a good idea to set your environment to access the
gasadmin command by running the script
$FGLASDIR/envas.
When you use gasadmin to deploy the Genero Archive
(gar) file the archive is unpacked in the
$(res.appdata.path)/deployment directory. Static resources
are zipped for better performance at runtime.
Note: The application
deployed is named with the xcf, not the Genero Archive
(.gar) file name.
At the command line type the
gasadmin
command with the appropriate
command and arguments.
To deploy an archive named fuzzy.gar:
gasadmin gar --deploy-archive fuzzy.gar
By default, the results are output in text format. When the console
output uses the form of an XML document, it can be easier to parse by other applications than
textual output. To output in XML, specify the --xml-output
option:
gasadmin gar --deploy-archive fuzzy.gar --xml-output
The exit status is a 0 (zero) in case of success, 1 in case of error.
XML
output
example:
<DEPLOYMENT success=”TRUE”>
<MESSAGE>Genero Archive successfully deployed.</MESSAGE>
</DEPLOYMENT>
<DEPLOYMENT success=”FALSE”>
<ERROR>Failed to deploy the Genero Archive</ERROR>
<ERROR>An archive with the same name is already deployed</ERROR>
</DEPLOYMENT>
Text
output
example:
Command succeeded.
Genero archive successfully deployed.
Command failed.
ERROR: Failed to deploy the Genero Archive
ERROR: An archive with the same name is already deployed.
Important: If you start the dispatcher
with the option (
-E
) to override the $(res.appdata.path)
location, you must also override the resource when deploying applications with the
gasadmin gar
command, in order to deploy to the correct directory. For
example, specify the same option with both commands:
- Starting the dispatcher:
httpdispatch -E res.appdata.path=/work/tmp/gas/appdata
- Deploying the application:
gasadmin gar -E res.appdata.path=/work/tmp/gas/appdata --deploy-archive myapp.gar
All applications and services are deployed in the default group of the application server.