Question : stop Weblogic managed server without node manager and admin server

What are the commonly used ways to stop managed Weblogic server *without* node manager running and *without* administration server running?
(I have only one solution: on the managed server startup dump process ID to a file, and then when I want to stop it, send a signal to this process ID and kill JVM. But it seems not very clean way.)

(The managed server is started when both node manager and admin server are down, and I provide boot.properties of admin server to the managed server to start.)

Answer : stop Weblogic managed server without node manager and admin server

Hi JIEXA,

you can achieve this using WLST :
1.Start WLST (%WL_HOME%\common\bin\wlst.cmd)
2.Connect to the managed server (not the admin server)
3.shutdown the server

Code sample
connect('username','password','t3://localhost:7011')
shutdown('server1','Server','false',1000,block='false')

Hope this help
Emmanuel
Random Solutions  
 
programming4us programming4us