Link to home
Start Free TrialLog in
Avatar of kewlclassic
kewlclassic

asked on

I need to write a python script using wsadmin which Stop's, Sync and Start's all the JVM on Node1 and then send an email after the task is done.

I am using WebSphere Application Server 7.0 running on windows. I need a wsadmin script which will do a Stop, Sync and Start of all the JVM on the node and then send an email after all the JVM's are started. I want the email notification include that it stopped, synced and started the JVM's.

Please help me out.

Thanks
Avatar of Walter Ritzel
Walter Ritzel
Flag of Brazil image

Please look at these samples:
http://www.ibm.com/developerworks/websphere/library/samples/SampleScripts.html

http://wsadminlib.blogspot.com.br/2010/12/how-to-start-node-agent-using-scripting.html

Basic script from last link:
# Import python os library to execute external commands
import os


# Import wsadminlib.py (update this to your own wsadminlib.py path)
execfile('/tmp/wsadminlib.py')


# Node name
nodename = 'node1'


# Server name
servername = 'nodeagent'


# Counter used to keep track of while loop execution
counter = 0


while(counter < 2):
    # Check if Node agent is running
    print "\nIs Node agent running?"
    isItRunning = isServerRunning(nodename,servername)
    
    # If Node agent is running let's stop it
    # else let's start it
    if (isItRunning):
        print "YES\n"
        
        print "Request issued to stop Node agent\n"
        stopServer( nodename, servername, immediate=False )
        counter = counter + 1
    else:
        print "NO\n"
        print "Request issued to start Node agent\n"
        os.system('/opt/WAS61/profiles/node1/bin/startNode.sh')
        counter = counter + 1

Open in new window

Avatar of kewlclassic
kewlclassic

ASKER

Thanks Walter. But the one which you attached above is just stopping and starting the node agent. I need one to stop all the JVM's on one node and then perform Sync and and then start all JVM's. Repeat this step for the other node as well. Once this is done, an email needs to be send confirming all task's has been done.

I don't know how to start writing a script. Any help will be much appreciated.

Thanks
Ok, let me see if I can came with something. But I believe that you need to get started on reading anything you can from the first link.

To start creating a script, is pretty much what you saw above. Python is really a simple and very efficient and effective language.

http://www.python.org is the place to start with python.

Cheers,
Walter.
--Walter, thanks again.

 I took few samples from this forum and wrote this one. Its works but needs modification.

I need this script to perform stop/sync/start and send email on node1 and then do the same stop/syn/start on node2 and send the email.

I took the wsadmin control commands from WebSphere Admin Console by stopping the JVM, syncing the nodes manually. But this needs to be refined. As i said above, if you can help me out using this as base script, I really appreciate it. The email thing is working fine. So please when you modify this, please include all the output results come out in email.

Thanks
Kewlclassic
#######################################

import smtplib


sender = 'xxxxxx@xxxx.com'
receivers = ['xxxxx@xxx.com.com']

#Create empty string
outmsg = ''

print "Stopping JVM's"
outmsg = outmsg + "Stopping JVM's\n"


AdminControl.invoke('WebSphere:name=ABCD_CM01,process=ABCD_CM01,platform=proxy,node=ESB-node01,j2eeType=J2EEServer,version=7.0.0.25,type=Server,mbeanIdentifier=cells/ESB_MODL/nodes/esbmodl-node01/servers/HUB_CM01/server.xml#Server_1363703386444,cell=ESB_MODL,spec=1.0,processType=ManagedProcess', 'stop')



serverCount= len(AdminControl.queryNames('type=Server,cell=ESB_MODL,node=esbmodl-node01,*').split())

while(serverCount > 1):

                print serverCount
#               outmsg = outmsg + serverCount+'\n'
                print "Server is stopping"
                outmsg = outmsg + 'Server is stopping\n'
                sleep(5)
                serverCount= len(AdminControl.queryNames('type=Server,cell=ESB_MODL,node=esbmodl-node01,*').split())

print "Server Stopped"
outmsg = outmsg + 'Server Stopped\n'

AdminControl.invoke('WebSphere:name=repository,process=nodeagent,platform=common,node=tcmesbmodl-node01,version=5.0,type=ConfigRepository,mbeanIdentifier=repository,cell=ESB_MODL,spec=1.0', 'refreshRepositoryEpoch')

AdminControl.invoke('WebSphere:name=cellSync,process=dmgr,platform=common,node=modl-dmgr-node,version=7.0.0.25,type=CellSync,mbeanIdentifier=cellSync,cell=ESB_MODL,spec=1.0', 'syncNode', '[tcmesbmodl-node01]', '[java.lang.String]')
               

Sync1 = AdminControl.completeObjectName('type=NodeSync,node=tcmesbmodl-node01,*')

SyncStatus =AdminControl.invoke(Sync1, 'sync')

print "Sync Status"
outmsg = outmsg + 'Sync Status\n'

while(SyncStatus !="true"):

               print "Sync in Progress"
#             outmsg = outmsg + 'Sync in Progress\n'
               sleep (5)
             SyncStatus =AdminControl.invoke(Sync1, 'sync')

print "Sync Complete"
outmsg = outmsg + 'Sync Complete\n'


print "Starting JVM's"
outmsg = outmsg + "Starting JVM's\n"


AdminControl.invoke('WebSphere:name=EFGH_CM01,process=EFGH_CM01,platform=common,node=tcmesbmodl-node01,diagnosticProvider=true,version=7.0.0.25,type=NodeAgent,mbeanIdentifier=NodeAgent,cell=ESB_MODL,spec=1.0', 'launchProcess', '[AGENTHUB_CM01]', '[java.lang.String]')


print "All JVM's Started"
outmsg = outmsg + "All JVM's Started\n"

# Send email

message = """From: From Person <xxxxx@xxx.com>
To: To Person <xxxxx@xxx.com
Subject: WESB MODL-Stop-Start-Sync Node1

    %s
    """ % ( outmsg )

try:
   s = smtplib.SMTP('mail1.domain.com')
   s.sendmail(sender, receivers, message)        
   print "Successfully sent email"
except SMTPException:
   print "Error: unable to send email"
ASKER CERTIFIED SOLUTION
Avatar of kewlclassic
kewlclassic

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
just figured it out.