AppManage utility can be used to create a BusinessWorks application using EAR file, export and import deployment configuration, deploy, undeploy, start, stop, delete an application. It can operate in batch mode. You can run AppManage utility on any machine in the TIBCO Domain. It is placed in /<tibco_home>/tra/<version>/bin/ folder. Log file will be in the domain log folder. I will show the most simple use of AppManage utility for stop and start one BW application. This can be used for scheduled restart, for example.
- Prepare credentials file using obfuscate utility:
> vi cred.txt
user=admin
pw=#!tibco> ./obfuscate cred.txt> cat cred.txt
user=admin
pw=#!L3myZM9vfgr/3GAEybDLLRzX9kcdAJxZ - Use AppManage to stop a deployed application:
> ./AppManage -stop -app <application> -domain <domain> -cred cred.txt - Use AppManage to start a deployed application:
> ./AppManage -start -app <application> -domain <domain> -cred cred.txt
<application> is “Application” in TIBCO Administrator, not “Service Instance”
The user, defined in the cred.txt file, mush have appropriate rights to start and stop an application. You can operate as “admin”, or better to define new user in TIBCO Administrator with write access rights.











1. Comment by pavelNL
7/Apr/2010 at 2:09 pm
Serge, it is all good, but some words of caution…
In new Tibco products (Active Matrix) there is no place for this utility (appmanage) and THERE WOULD BE NO WAY to perform some of its “sweet” operations like batchexport. So I would not recommend to get addicted to it too much :(
Although I like this utility a lot, use it almost daily and designed the whole Dev and Test process in our organisation on its features …
2. Comment by Serge
7/Apr/2010 at 2:31 pm
Hi Pavel! Thanks for this remark.