IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Command-line utilities > configureNode command-line utility > configureNode examples

Example: Single machine hosting the deployment manager and one node: Standard, PS, DB2

After creating a Process Center topology, you can also use the configureNode command-line utility to create a Process Server topology for IBM Business Process Manager Standard with a deployment manager and a single node on the same machine, using a DB2 database.

This example assumes that the machine is called M02 and you want to create the following configuration:

Machine Node Messaging cluster Support cluster Application target cluster
M02 Dmgr - - -
M02 PSNode01 1 1 1

Procedure

  1. Copy the following sample properties files:

    • install_root/util/ndUtils/std/samples/sample_std_ps_dmgr.properties

    • install_root/util/ndUtils/std/samples/sample_std_ps_node.properties

  2. Rename the new files, for example to m02_std_ps_dmgr.properties and m02_std_ps_node.properties. Update the files with the required values.

    Example of deployment manager file:

    # filename: m02_std_ps_dmgr.properties
    
    server.type = PS       # Process Center (PCS) or Process Server (PS)
    
    # Dmgr setting
    hostName=M02.ibm.com
    adminUserName=admin
    adminPassword=admin
    
    nodeName=Dmgr
    initialPortAssignment=12030
    
    # Environment settings environment.type = Test
    processCenterURL= http://M01:9080 #(optional, if not set, the environment is offline PS)
    repository.user = admin #(optional, if not set, the environment is offline PS)
    repository.credential = admin #(optional, if not set, the environment is offline PS)
    
    # Database settings dbType=DB2	
    dbServerName=M01
    dbPortNumber=50000
    
    # DB for Process Server
    prcsvr.dbName = BPMPSDB
    prcsvr.dbUserName = bpmadmin
    prcsvr.dbPassword = s0m3passw0rd
    
    # DB for Performance Data Warehouse perfDW.dbName = PDWPSDB	
    perfDW.dbUserName = bpmadmin
    perfDW.dbPassword = s0m3passw0rd
    

    Example of custom node file:

    # filename: m02_std_ps_node.properties
    
    nodeName=PSNode01
    initialPortAssignment=12809
    
    # Basic Install environment information
    server.type = PS       # Process Center (PCS) or Process Server (PS)
    install.type = Standard # Optional
    
    #Install clusters on this node
    install.cluster.support = 1
    install.cluster.AppTarget = 1
    install.cluster.message = 1
    
    # Database setting
    dbType=DB2	
    
    # Deployment Manager Properties
    dmgr.hostName=M02.ibm.com
    dmgr.adminUserName=admin
    dmgr.adminPassword=admin
    dmgr.initialPortAssignment=12030
    

  3. Run the configureNode command on the M02 machine:

    • install_root\util\ndUtils\configureNode.bat -dmgr_response m01_dmgr_response_file.properties -response m01_response_file.properties

    • install_root/util/ndUtils/configureNode.sh -dmgr_response m01_dmgr_response_file.properties -response m01_response_file.properties

Parent topic: configureNode examples