sfxx note

How to migrate AMX based products to SF.

1. How to make a component type

   a. Copy a AMX component type from SFSG 1.0.0.
   b. Update all files under domain_type, rename value of property 'name' into new product name.
   c. Rename all files under domain_type: domain_type_<product_name>.xml,
                                                                             <product_name>_domain_template.xml,
                                                                             <product_name>_domain_wizard.xml

note 1. Make sure all "pageFileUri" in <product_name>_domain_wizard.xml are correct.
note 2. Make sure all variables <product_name>_domain_template.xml are not missed, otherwise NPE may happen. To know what the <product_name> ought to be, find value of </supportedDomainType> in according container.xml

2. How to make a distribution for AMX based product

   a. Install a standalone AMX, analyze which folders are neccessary to include,
   b. You must analyze antTask_log_post-install**.log, see what files generated as running post-install, and then exclude them
while packing distribution. To know if new files generated, manually run post-install target in post-install scripts. To know where these files are generated into, open these scripts and find out the target. When you loated the generated file, pay attention to the timestamp, you'll know which are the new files genereated by scripts together.
   c. Copy a SGSF 3.1 script, update it to exclude unneccessary folders and generated files.
   d. Compare the post installation log to the distribution output in SF. Make sure they are the same.

ant exclude files sample:

   <target name="amxbpm.distribution.package" depends="amxbpm.distribution.clean,amxbpm.distribution.check">
        <zip destfile="${amxbpm.distribution.name}">
            <zipfileset dir="${installation.root}" excludes="_installInfo/, _uninstall/, tools/machinemodel/machine.*, studio/, amx/, bpm/, client-api/"/>
            <zipfileset dir="${temp.dir}/" includes="grid-library.xml"/>

            <zipfileset dir="${installation.root}/amx"  prefix="amx" 
            excludes="**/*.tra,
			${amsg.minor.version}/bin/hpaclient,
			${amsg.minor.version}/bin/nodeutil,
			${amsg.minor.version}/bin/bootstraptcs,
			${amsg.minor.version}/bin/rdacompiler,
			${amsg.minor.version}/bin/viewlog,
			${amsg.minor.version}/bin/tibamx_patchmgr,
			${amsg.minor.version}/scripts/tibamx_patchmgr.properties"/>

            <zipfileset dir="${installation.root}/bpm"  prefix="bpm"
			excludes="${amxbpm.minor.version}/scripts/post-install.properties,
			${amxbpm.minor.version}/scripts/upgrade/upgrade,
			${amxbpm.minor.version}/scripts/silent/silentinstall"/>

            <zipfileset dir="${installation.root}/client-api"  prefix="client-api"
			excludes="${amxbpm.minor.version}/scripts/post-install.properties,
			${amxbpm.minor.version}/web-client-api/*.jar"/>

        </zip>
    	<delete includeemptydirs="true">
    	    <fileset dir="${temp.dir}/"/>
    	</delete>
    </target>


note 1. If you install standalone produce, and run distribtuion in the same machine, make sure you remove standalone install folder before using distributionl.

3. What to do in container

A very important config file is container.xml, please make sure the following values are unique, for example,
<container class=" com.tibco.sf.container.****Container">
    <property name=" name" value="TIBCO **** container"/>
    <property name=" version" value="%%amx***.container.version%%.%%amx***.container.hotfix.version%%"/>
    <property name="description" value="Container to create a new TIBCO Host instance"/>
    property name=" supportedDomainType" value="TIBCO AMX *** Runtime:%%component.type.tibcoamx***.version%%"/>
    <property name="blocking" value="false"/>
    <property name=" distributionVersion" value="%%amx***.container.version%%.%%amx***.container.hotfix.version%%"/>

There are two main tasks to do in container code: running postinstall scripts and headless scripts.

Please following steps to find what specific post-install scripts to invoke.

a. Copy post installation logs in .TIBCO in ${user.home} after standalone installation.

b. Seach all post-install target in different directories, usually, the post-install target numbers match antTask_log_post-install numbers. You must call these post-install
in container and extract distribution. There I found an issue that some target shares the same log, for example, rpflauncher_1.0.0-post-install.xml and tibamx_patchmgr_1.0.2-post-install.xml shares the same log antTask_log_post-install_2012-11-14.142706.log, but log of tibamx_patchmgr_1.0.2-post-install.xml will be overwriten.

tibco_universal_installer.root_install.log:

(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/tibamx_patchmgr_1.0.2-post-install.xml'
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/tibamx_patchmgr_1.0.2-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/ antTask_log_post-install_2012-11-14.142706.log
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/rpflauncher_1.0.0-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/rpflauncher_1.0.0-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/ antTask_log_post-install_2012-11-14.142706.log



************** tibco_universal_installer.michael_install.log ***********

(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting JAVA Values::: OS name = Linux
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting JAVA Values::: OS architecture = amd64
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_BIN_DIR = /home/michael/cloudteam/install/tibcojre64/1.6.0/bin
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64/server/libjvm.so
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB_DIR = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB_SERVER = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64/server/libjvm.so
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB_SERVER_DIR = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64/server
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB_CLIENT = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64/server/libjvm.so
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting TIBCO_JVM_LIB_CLIENT_DIR = /home/michael/cloudteam/install/tibcojre64/1.6.0/lib/amd64/server
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.wizard.action.TIBCOCopyInstallScriptingTools, dbg.Debug, absoluteInstallLocation (tibco home) = /home/michael/cloudteam/install






(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, removing old scripts and lib files
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, FAILED to delete: '/home/michael/cloudteam/install/tools/scripts'
(Nov 14, 2012 2:26:27 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, FAILED to delete: '/home/michael/cloudteam/install/tools/lib'
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.wizard.action.TIBCOCopyInstallScriptingTools, dbg.Debug, extracting /tmp/ismp001/6910552.tmp to /home/michael/cloudteam/install/tools/lib
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, getIsUnixPlatform: platform is UNIX
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.wizard.action.TIBCOCopyInstallScriptingTools, dbg.Debug, copying /tmp/ismp001/5408166.tmp to /home/michael/cloudteam/install/tools/scripts
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.wizard.action.TIBCOCopyInstallScriptingTools, dbg.Debug, copying /tmp/ismp001/4395885.tmp to /home/michael/cloudteam/install/tools/scripts
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, WARNING::createDirectory failed to create: /home/michael/cloudteam/install/tools/scripts
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ::directory already exists
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.wizard.action.TIBCOCopyInstallScriptingTools, dbg.Debug, copying /tmp/ismp001/2477451.tmp to /home/michael/cloudteam/install/tools/scripts
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, WARNING::createDirectory failed to create: /home/michael/cloudteam/install/tools/scripts
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ::directory already exists
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, :::START ANT TASK EXECUTION:::ref point = pre-assembly-ref
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ref point = pre-assembly-ref
(Nov 14, 2012 2:26:28 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Checking / Updating machine model....




(Nov 14, 2012 2:26:29 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:29 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:29 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:29 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:29 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142634.log

ant -f sync-machine-model.xml sync-machine-model -Dtibco.home=/home/michael/cloudteam/dist/bpm13 -Dcomponent.store.name=shared -Dcomponent.store.version=1.0.0




(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142636.log
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:36 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142637.log
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:37 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142638.log
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:38 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142639.log
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:39 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142641.log
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:41 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142642.log
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:42 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142644.log
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:44 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142645.log
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:45 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142646.log
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:46 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142647.log
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:47 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142648.log
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, build properties used:
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'tibco.home' = '/home/michael/cloudteam/install'
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.name' = 'shared'
(Nov 14, 2012 2:26:48 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, 'component.store.version' = '1.0.0'
(Nov 14, 2012 2:26:50 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'sync-machine-model' on ant script: '/home/michael/cloudteam/install/tools/scripts/sync-machine-model.xml'
(Nov 14, 2012 2:26:50 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: sync-machine-model
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_sync-machine-model_2012-11-14.142650.log
(Nov 14, 2012 2:26:50 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: requiring TIBCO Host configuration
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 1
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.config.requirement=com.tibco.tct.tibcohost_1.2.400.001
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: register-config-need
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_register-config-need_2012-11-14.142651.log
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: requiring Administrator configuration
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 1
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.config.requirement=com.tibco.tct.admin_1.2.500.002
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: register-config-need
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_register-config-need_2012-11-14.142651.log
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:26:51 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: requiring JDBC driver configuration
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 1
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.config.requirement=com.tibco.tct.tpclshells_1.2.200.002
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: register-config-need
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_register-config-need_2012-11-14.142652.log
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...





(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/post-install.xml'
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:26:52 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:03 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/post-install.xml'
(Nov 14, 2012 2:27:03 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142703.log
(Nov 14, 2012 2:27:03 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:03 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:27:04 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:04 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/tibcohost/3.1/scripts/post-install.xml'
(Nov 14, 2012 2:27:04 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:04 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/tibcohost/3.1/scripts/post-install.xml'
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142705.log
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/tibamx_patchmgr_1.0.2-post-install.xml'
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:05 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/tibamx_patchmgr_1.0.2-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142706.log
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Tasks...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/rpflauncher_1.0.0-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/amx/3.1/scripts/rpflauncher_1.0.0-post-install.xml'
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142706.log
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:06 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: requiring AMX BPM Configuration
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...


/home/michael/cloudteam/dist/bpm13/tibcojre64/1.6.0/bin/java -cp /home/michael/cloudteam/dist/bpm13/tools/lib/antpackage.jar org.apache.tools.ant.launch.Launcher -f post-install.xml -Dtibco.home.esc=/home/michael/cloudteam/dist/bpm13 -Dtibco.home=/home/michael/cloudteam/dist/bpm13 -Dtibco.wrapper.extension= post-install



(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 1
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.config.requirement=com.tibco.tct.bpm_1.3.0.018
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: register-config-need
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_register-config-need_2012-11-14.142707.log
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: requiring AMX BPM NodeType Configuration
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 1
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.config.requirement=com.tibco.tct.bpm.nodetype_1.3.0.003
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'register-config-need' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: register-config-need
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_register-config-need_2012-11-14.142707.log
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:07 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: BPM Node Post Install
(Nov 14, 2012 2:27:08 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:08 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/bpm/1.3/scripts/post-install.xml'
(Nov 14, 2012 2:27:08 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:08 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:18 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/bpm/1.3/scripts/post-install.xml'
(Nov 14, 2012 2:27:18 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142718.log
(Nov 14, 2012 2:27:18 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:18 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: TCT post install action
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'tct-post-install' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 2
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: rcp.location=/home/michael/cloudteam/install/tct/rcp/3.5
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Setting custom property: tct.wizard.file=/home/michael/cloudteam/install/tct/1.1/eclipse/plugins/com.tibco.configtool_1.1.500.004/WizardConfig.xml
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'tct-post-install' on ant script: '/home/michael/cloudteam/install/tct/1.1/scripts/tct-invoke.xml'
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: tct-post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_tct-post-install_2012-11-14.142719.log
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Running Product ANT Task: Service Connector PostInstall
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks...
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Going to run ant target  'post-install' on ant script: '/home/michael/cloudteam/install/service-connector/1.3/scripts/post-install.xml'
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, num custom props = 0
(Nov 14, 2012 2:27:19 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, LOG LEVEL = 2
(Nov 14, 2012 2:27:34 PM), Install, com.tibco.installer.wizard.action.TIBCOExecutePostInstallAntTasks, dbg.Debug, ::Finished running ant target  'post-install' on ant script: '/home/michael/cloudteam/install/service-connector/1.3/scripts/post-install.xml'
(Nov 14, 2012 2:27:34 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, ANT log file for target: post-install
/home/michael/.TIBCO/install_2012-11-14.141743/antTask_log_post-install_2012-11-14.142734.log
(Nov 14, 2012 2:27:34 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Processing Post Install/Uninstall Ant Tasks complete...
(Nov 14, 2012 2:27:34 PM), Install, com.tibco.installer.util.TIBCOInstaller, dbg.Debug, Cleaning up...


Please following steps to find what specific headless scripts to invoke.

a. Before using tct to run any task, make sure kill all 'tibco' processes in this machine. And you'd better remove tibco conf folders that include all stuff about running tct task.

b. Go to /home/michael/<tibco_conf>/data/tct/bpm/<timestamp>/logs to see the task log. Inside of the log, you can see what target to invoke for this task. For example,

ant -f build.xml admin-full-setup -Ddev.node.products=

note: Must use ant at /home/michael/<tibco-home>/tools/lib/antpackage.jar, otherwise you may run into net/sf/antcontrib/antcontrib.properties not found problem. Because your installed ant may not contain ant-contrib-0.3.jar by default.

so correct cmd to run headless without tct UI is

java -cp /home/michael/amx-bpm2.2_home/tools/lib/antpackage.jar org.apache.tools.ant.launch.Launcher -f build.xml admin-full-setup deploy-bpm -Ddev.node.products=

note: Above java cmd looks correct, but you may run into OOM issue while executing deploy-bpm task. So you must add -XX:MaxPermSize=512m option.

java -XX:MaxPermSize=512m -cp /home/michael/amx-bpm2.2_home/tools/lib/antpackage.jar org.apache.tools.ant.launch.Launcher -f build.xml admin-full-setup deploy-bpm -Ddev.node.products=

You may wonder how to know the exact max perm size, you can refer to -XX:MaxPermSize option setting in /home/michael/amx-bpm2.2_home/tct/1.2/TIBCOConfigurationTool, that's why TIBCOConfigurationTool won't run into such OOM issue while deploying bpm target.

or with silentMode cmd is

./TIBCOConfigurationTool -silentMode -wizard.id com.tibco.tct.bpm -wizard.props /home/michael/amx-bpm2.2_conf/data/tct/bpm/2013-03-15-12-22-46/scripts/build.properties

./TIBCOConfigurationTool -silentMode -wizard.id com.tibco.tct.bpm -wizard.props /home/michael/amx-bpm2.2_conf/data/tct/bpm/2013-03-15-12-22-46/scripts/build.properties -wizard.target deploy-bpm

c. TCT UI helped you generated build.properties for ant task, however,  without tct, you have to generate build.properties in container code. But you can refer to the one generated by tct ui:

/home/michael/<tibco_conf>/data/tct/bpm/<timestamp>/scripts/build.properties

d. Don't forget to update dependency.properties in container to support new edition distributions.


e. Once you fail or run again,, you'd better delete the tablespace you just used, or you may run to such an issue in  Task:   Deploying AMX BPM Application to Node, blablabla ... Resource instance 'N2PEProxySessionFactoryJNDI' is not installed for node 'BPMNode' on host 'SystemHost'.

猜你喜欢

转载自mxy0521.iteye.com/blog/1727029