Thursday 16 October 2014

IBM BPM 8.5.0.1 Advanced - More about BPM > PDW Communication

On the back of: -


for the record, this is what I changed: -

Add cell-level configuration file 101Custom.xml

cd /opt/ibm/WebSphereProfiles/Dmgr02/config/cells/PSCell1/nodes/AppSrv02Node/servers/AppClusterMember1/process-server/config

vi 101Custom.xml

Contains: -

<properties>
<!-- Added by Dave Hay, IBM, to disable Process Server to Performance Data Warehouse communication - 18/09/2014 -->
        <common>
                <performance-server-communication>
                        <enabled merge="replace">false</enabled>
                </performance-server-communication>
        </common>
</properties>

Synchronise Node from Cell-level configuration

/opt/ibm/WebSphereProfiles/Dmgr02/bin/wsadmin.sh -lang jython -user wasadmin -password <<removed>> -c "AdminNodeManagement.syncActiveNodes()"

Start Process Server Deployment Environment

/opt/ibm/WebSphere/AppServer/bin/BPMConfig.sh -start -profile Dmgr02 -de PSDeployEnv -username deAdmin -password <<removed>>

Validate new configuration for PDW

view /opt/ibm/WebSphereProfiles/AppSrv02/config/cells/PSCell1/nodes/AppSrv02Node/servers/AppClusterMember1/process-server/TeamWorksConfiguration.running.xml

Now contains: -

...
    <performance-server-communication>
      <enabled>false</enabled>

...

I also needed to update the cluster template version of this file, so that new cluster members would get the same configuration.

Therefore, I have placed a copy of 101Custom.xml here: -

/opt/ibm/WebSphereProfiles/Dmgr02/config/cells/PSCell1/nodes/AppSrv02Node/servers/AppClusterMember1/process-server/config/101Custom.xml

Just thought you ought to know ....

No comments:

Visual Studio Code - Wow 🙀

Why did I not know that I can merely hit [cmd] [p]  to bring up a search box allowing me to search my project e.g. a repo cloned from GitHub...