Create clusters without cluster members using scripting

 

+

Search Tips   |   Advanced Search

 

 

Procedure

  1. Start wsadmin

  2. Identify the cell configuration ID and set it to the s1 variable:

    Jacl:

    set s1 [$AdminConfig getid /Cell:mycell/]
    
    

    Jython

    s1 = AdminConfig.getid('/Cell:mycell/')
    

  3. Create a new cluster without a cluster member:

    Using Jacl:

    $AdminConfig create ServerCluster $s1 {{name ClusterName}}
    $AdminConfig save
    

    Jython

    print AdminConfig.create('ServerCluster', s1, '[[name ClusterName]]')
    

  4. In a network deployment environment only, synchronize the node.


 

See Also


AdminConfig object for scripted administration

 

See Also


Commands for the AdminConfig object