WLST How To Start Stop
Weblogic command line using wlst is not that simple to learn.
$ wlst
connect(‘user’,’password’,’t3://localhost:7201′);
ls(‘Servers’);
GET STATUS:
state(‘ecestgpres1′,’Server’)
TO STOP:
shutdown(‘castgpres1′,’Server’,’true’,10)
TO START:
start(‘castgpres1’)
NOTES:
How to ask for help:
help(‘all) – very usefull to find command you may need
help(‘disconnect’)
help(‘cd’)
Shutdown How to:
shutdown([name], [entityType], [ignoreSessions], [timeOut], [force], [block])
Ref.:
http://wlstbyexamples.blogspot.com/2010/02/server-state-using-wlst.html

Leave a Reply

Your email address will not be published. Required fields are marked *