如何使用命令stopManagedWebLogic.sh強制關閉 WebLogic 託管伺服器(Managed Server)

tolywang發表於2013-01-15
 
 
Adding force shutdown of managed server  in weblogic.
 
------------------------------------------------------------------------------------------------------------------------------------
 
if we run the stopManagedweblogic.sh script. with fore="true"  doesn't work as by default the script. picks force='false'.
 
eg : sh stopManagedWebLogic.sh oim_server1 t3://xxxxx:7011 weblogic cccccu force="true"
 
 
 
you see the below message in log
 
Shutting down the server AdminServer with force=false while connected to AdminServer ...


 
 
To set force shutdown by default we need perform. the below steps
 
cp stopWebLogic.sh stopWebLogic.sh stopWebLogic.sh.02142012
 
Change line as below
 
echo "shutdown('${SERVER_NAME}','Server')" >>"shutdown.py"
 
to
 
echo "shutdown('${SERVER_NAME}','Server',force='true')" >>"shutdown.py"

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-752682/,如需轉載,請註明出處,否則將追究法律責任。

相關文章