updateBPMConfig command

Use the updateBPMConfig to update the Process Server configuration.

Purpose

Use the updateBPMConfig command to update the Process Server configuration files after you have updated configuration values, such as server name, in the administrative console.

Optional parameters

-nodeName
Specifies the name of the node that you are configuring. If this parameter is specified, the -serverName parameter must also be specified. Do not specify this parameter if the -clusterName parameter is specified.
-serverName
Specifies the name of the server that you are configuring. If this parameter is specified, the -nodeName parameter must also be specified. Do not specify this parameter if the -clusterName parameter is specified.
-clusterName
Specifies the name of the cluster that you are configuring. If this parameter is specified, the -serverName and -nodeName parameters must not be specified.
-performanceDWJNDIURL
Specifies the Java Naming and Directory Interface (JNDI) connection URL that can be used to establish a connection to the Performance Data Warehouse database.
-performanceDWScope
Specifies the scope for the Performance Data Warehouse.
-adminID
Specifies the Process Server administrative ID.
-adminAuthAlias
Specifies the <Placeholder>.
-authorAuthAlias
Specifies the <Placeholder>.
-serverAuthAlias
Specifies the authoring server host name.
-operatorID
Specifies the ID that operates the Process Center server.
-repositoryServerURL
Specifies the URL of the Process Center to which the Process Server will connect.
-repositoryServerHeartbeat
Specifies the Process Center heartbeat interval. A value of -1 depicts an offline setting.
-appServerName
Specifies the Process Server host name or virtual IP address.
-appServerPort
Specifies the Process Server HTTP port number.
-environmentName
Specifies the server name as displayed within a connected Process Center.
-environmentType
Process Server environment type.
-procsrvDBURL
Specifies the Process Center application URL.
-procsrvDBUserID
Specifies the user ID required for Process Server database authentication.
-procsrvDBPassword
Specifies the password required for Process Server database authentication.
-perfDWDBURL
Specifies the Performance Data Warehouse application URL.
-perfDWDBUserID
Specifies the user ID required for Performance Data Warehouse database authentication.
-perfDWDBPassword
Specifies the password required for Performance Data Warehouse database authentication.
-bootstrapURL
Specifies the bootstrap URL.
These parameters are case-sensitive.

Examples

  • Using Jacl:
    1. For a single-server environment:
      $AdminTask updateBPMConfig {-nodeName Node_Name -serverName Server_Name -procsrvDBURL jdbc:oracle:thin:@Database_URL -procsrvDBUserID User_ID -procsrvDBPassword Password -perfDWDBURL jdbc:oracle:thin:@Database_URL -perfDWDBUserID User_ID -perfDWDBPassword Password}
    2. For a network deployment environment:
      $AdminTask updateBPMConfig {-clusterName application_cluster_name -procsrvDBURL jdbc:oracle:thin:@ Database_URL -procsrvDBUserID User_ID -procsrvDBPassword Password -perfDWDBURL jdbc:oracle:thin:@Database_URL -perfDWDBUserID User_ID -perfDWDBPassword Password} 
  • Using Jython:
    1. For a single-server environment:
      AdminTask.updateBPMConfig('[-nodeName Node_Name -serverName Server_Name -procsrvDBURL jdbc:oracle:thin:@Database_URL -procsrvDBUserID User_ID -procsrvDBPassword Password -perfDWDBURL jdbc:oracle:thin:@Database_URL -perfDWDBUserID User_ID -perfDWDBPassword Password]')
    2. For a network deployment environment:
      AdminTask.updateBPMConfig('[-clusterName application_cluster_name -procsrvDBURL jdbc:oracle:thin:@ Database_URL -procsrvDBUserID User_ID -procsrvDBPassword Password -perfDWDBURL jdbc:oracle:thin:@Database_URL -perfDWDBUserID User_ID -perfDWDBPassword Password]')