Products | Versions |
---|---|
TIBCO Runtime Agent (TRA) | - |
Not Applicable | - |
Description:
How to find the status of application deployment using the command line utility (CLI).
1). If you want status of all the application deployed in the domain then you can run the following command to obtain the status of all applications.
AppStatusCheck.exe -domain <DomainName> -user <UserName> -pw <password> e,g. AppStatusCheck.exe -domain File_590 -user a -pw a |
Initializing ... Finished initialization Application Name: ACI-CheckinProcessor Service Name: CheckinProcessor.par Deployment Status: Success Service Instance Name: CheckinProcessor Machine Name: MACHINENAME-T510 Status: Stopped Application Name: FirstWriteToLog Service Name: FirstProcessArchive.par Deployment Status: Success Service Instance Name: FirstProcessArchive Machine Name: MACHINENAME-T510 Status: Stopped Finished status check |
2). If you want the status of a specific application deployed in a domain, you can run the following command to obtain the status of all applications.
AppStatusCheck.exe -domain <DomainName> -user <UserName> -pw <password> -app <APPNAME> e.g AppStatusCheck.exe -domain File_590 -user a -pw a -app FirsWriteLog |
Initializing ... Finished initialization Application Name: FirstWriteToLog Service Name: FirstProcessArchive.par Deployment Status: Success Service Instance Name: FirstProcessArchive Machine Name: MACHINENAME-T510 Status: Stopped Finished status check |
Some example usage of AppStatusCheck.
if you just run AppStatusCheck without any option you will see help. Example: AppStatusCheck -domain test -user admin -pw admin AppStatusCheck -domain test -cred c:\test\credfile.txt AppStatusCheck -domain test -user admin -pw admin -outfile c:\test\AppStatus.xml AppStatusCheck -domain test -user admin -pw admin -app myApp -outfile c:\test\AppStatus.xml AppStatusCheck -domain test -user admin -pw admin -app myApp -service mySrvc -binding mySrvcInstance -outfile c:\test\AppStatus.xml |