configureProcessCenter command

Use the configureProcessCenter command to configure a server or cluster as a Process Center.

Purpose

This command provides a command line method to configure a server or cluster as a Process Center.

After using the command, save your changes to the master configuration using one of the following commands:
  • For Jython:
    AdminConfig.save()
  • For Jacl:
    $AdminConfig save

Required parameters

-serverName
Specifies the name of the server you are configuring.
-nodeName
Specifies the name of the node you are configuring.
-clusterName
Specifies the name of the cluster you are configuring.
-dbDesign
Specifies the path to a database design document, which holds the Process Center and Performance Data Warehouse database configuration for the server or cluster you are configuring.

The value must be the complete path name for the database design file.

Optional parameters

-meServerName
Specifies the name of the messaging engine server for a remote configuration.

Include this value when the Bus Member resides on another server (not the server you are configuring currently).

-meNodeName
Specifies the name of the messaging engine node for a remote configuration.

Include this value when the Bus Member resides on another server (not the server you are configuring currently).

-meClusterName
Specifies the name of the messaging engine cluster for a remote configuration.

Include this value when the Bus Member resides on another cluster (not the cluster you are configuring currently).

-perfDWNodeName
Specifies the deployment target node name on which you plan to configure Performance Data Warehouse.
-perfDWNodeName
Specifies the deployment target node name on which you plan to configure Performance Data Warehouse.
-perfDWServerName
Specifies the deployment target server name on which you plan to configure Performance Data Warehouse.
-perfDWClusterName
Specifies the deployment target cluster name on which you plan to configure Performance Data Warehouse.
Note: If the Performance Data Warehouse deployment target parameters (-perfDWNodeName, -perfDWServerName and -perfDWClusterName) are not specified, then the assumption is that the Performance Data Warehouse is going to be configured on this deployment target itself.

Examples

Note: The examples are for illustrative purposes only. They include variable values and are not meant to be reused as snippets of code.
The following example uses configureProcessCenter to configure server AppServer as a Process Center.
  • Jython example:
    AdminTask.configureProcessCenter('[-serverName AppServer -nodeName node1 
      -meNodeName me_node1 -meServerName Pctr -perfDWNodeName pdw_node1 
    -perfDWServerName pdw_pctr -dbDesign C:\dbDesigns\pctr.dbDesign]')
  • Jacl example:
    $AdminTask configureProcessCenter { -serverName AppServer -nodeName node1 
       -meNodeName me_node1 -meServerName Pctr -perfDWNodeName pdw_node1 
    -perfDWServerName pdw_pctr-dbDesign C:\dbDesigns\pctr.dbDesign}
The following example uses configureProcessCenter to configure cluster Cluster1 as a Process Center.
  • Jython example:
    AdminTask.configureProcessCenter('[-clusterName Cluster1 
     -meClusterName MessagingEngine1 -perfDWClusterName pdw_cluster1 
    -dbDesign C:\dbDesigns\pctr.dbDesign]')
  • Jacl example:
    $AdminTask configureProcessCenter { -clusterName Cluster1 
     -meClusterName MessagingEngine1 -perfDWClusterName pdw_cluster1 
    -dbDesign C:\dbDesigns\pctr.dbDesign}