+

Search Tips   |   Advanced Search

Stopping clusters using scripting


Use scripting and wsadmin to stop appserver, generic server, and proxy server clusters.

There are multiple ways to complete this task. This page uses AdminControl to stop clusters in the appserver runtime. Alternatively, we can use the ClusterConfigCommands command group for the AdminTask object or the immediateStopAllRunningClusters, immediateStopSingleCluster, stopAllClusters, and stopSingleCluster scripts in the AdminClusterManagement script library to administer clusters.

 

  1. Identify the Cluster MBean and assign it to the cluster variable.

    • Jacl...

      set cluster [$AdminControl completeObjectName cell=mycell,type=Cluster,name=cluster1,*]
    • Jython...

      cluster = AdminControl.completeObjectName('cell=mycell,type=Cluster,name=cluster1,*') print cluster

    This command returns the Cluster MBean.

    For example...

    WebSphere:cell=mycell,name=cluster1,mbeanIdentifier=Cluster,type=Cluster,process=cluster1

  2. Stop the cluster.

    • Jacl...

      $AdminControl invoke $cluster stop
    • Jython...

      AdminControl.invoke(cluster, 'stop')

    This command invokes the stop operation on the Cluster MBean.

 

Related tasks


Stopping clusters
Create clusters using scripting
Starting clusters using scripting
Use AdminControl for scripted administration

 

Related


Cluster administration scripts
ClusterConfigCommands
Commands for AdminControl