Welcome, guest | Sign In | My Account | Store | Cart
#################################################################### 
# Stop Enterprise Applications.
####################################################################
# Patrick Finnegan 01/09/2004.  V1.
####################################################################
####################################################################
# Main Control.
####################################################################

puts
"\n argc = $argc \n"

if {$argc < 2} {

       
set msg "error - not enough arguments supplied.  Supply application name and aplication server name"

       
return -code error $msg
   
}
######################################3
# set variables
######################################3

set appServer [lindex $argv 0]
set app       [lindex $argv 1]

puts
"*** AppServer   is $appServer ***"
puts
"*** Application is $app ***"

# Assume one cell, one deployment manager node and one application node.
# Application Node is VMWAS2

set cellId [ lindex [ $AdminConfig list Cell ] 0 ]
set nodes  [ $AdminConfig list Node ]

# delete the manager node from the list.

set manIndex   [ lsearch -glob $nodes *Manager* ]
set nodeId     [ lindex [ lreplace $nodes $manIndex $manIndex ] 0 ]

# get name attribute for cell and application node

set cellName [ $AdminConfig showAttribute $cellId name ]
set nodeName [ $AdminConfig showAttribute $nodeId name ]

#######################################################################
# check whether the application is installed in the target app server.
#######################################################################

   
set runningApps [ $AdminControl queryNames type=Application,* ]

   puts
"\n There are [ llength $runningApps ] running apps:\n"

   
foreach i $runningApps {

      puts
[ format "%-5s %-50s" " " [ $AdminControl getAttribute $i name ] ]  

   
}

   
# "s" is not populated if the app is stopped

   
set s [ $AdminControl completeObjectName type=Application,name=$app,* ]

   
if { ![ string compare $s "" ] == 0 } {

       puts
"\n *** stopping $app *** \n"

       
set appMan [ $AdminControl queryNames type=AppManagement,* ]

       
set appList [ list $app null null ]

       
if { [ catch { $AdminControl invoke $appMan stopApplication $appList } r ] == 0 } {

           puts
"\n *** $app stopped successfully *** \n"

       
} else {

           
return -code error $r

       
}

   
} else {

           puts
"\n *** $app is not started *** \n"

   
}

History