+

Search Tips   |   Advanced Search

Commands for troubleshooting

The following commands can help investigate problems with the MobileFirst Server web applications.


The show-info command

The show-info command shows basic information about the MobileFirst administration services that can be returned without accessing any runtime nor database. This command can be used to test whether the MobileFirst administration services are running at all. It has the following attributes:

Attribute Description Required Default
output Name of output file. No
outputproperty Name of Ant property for the output. No

Example:

<show-info/>


The show-versions command

The show-versions command displays the MobileFirst versions of various components:

And for every project WAR file:

It has the following attributes:

Attribute Description Required Default
output Name of output file. No
outputproperty Name of Ant property for the output. No

Example:

<show-versions/>


The list-runtimes command

The list-runtimes command returns a list of the deployed runtimes (MobileFirst projects). It has the following attributes:

Attribute Description Required Default
inDatabase Whether to look in the database instead of via MBeans. No false
output Name of output file. No
outputproperty Name of Ant property for the output. No

Examples:

<list-runtimes/>

<list-runtimes inDatabase="true"/>

This command is based on the Runtimes (GET) REST service.


The show-runtime command

The show-runtime command shows information about a given deployed runtime (MobileFirst project). It has the following attributes:

Attribute Description Required Default
runtime Name of the runtime web application / MobileFirst project. Yes Not available
output Name of output file. No
outputproperty Name of Ant property for the output. No

Example:

<show-runtime runtime="worklight"/>

This command is based on the Runtime (GET) REST service.


The delete-runtime command

The delete-runtime command deletes the runtime, including its apps and adapters, from the database. It is only possible to delete a runtime when its web application is stopped. It has the following attributes:

Attribute Description Required Default
runtime Name of the runtime web application / MobileFirst project. Yes Not available
condition Condition when to delete it: empty or always (dangerous!) No

Example:

<delete-runtime runtime="worklight" condition="empty"/>

This command is based on the Runtime (DELETE) REST service.


Parent topic: wladm Ant task