WebLogic Auto Restart Cluster Server

Soumen

Soumen

Reputable Poster
Dear List,

I recently setup a WebLogic 12c server on Windows with 3 Cluster Server nodes. I am using the Nodemanager option to restart all services automatically in Windows.
I referred this Document to setup the scripts in WLST.

https://support.oracle.com/epmos/fa...&_afrWindowMode=0&_adf.ctrl-state=8o6bm8cr7_4

Everything works great but I am not able to start all 3 managed servers at the same time.

The python script has this entry ...

nmConnect(userConfigFile='C:\SSScripts/myuserconfigfile.secure',userKeyFile='C:

\SSScripts/myuserkeyfile.secure',host='localhost',port='5556',domainName='E1_Apps',domainDir='C:\Oracle\Middleware

\user_projects\domains\E1_Apps')

nmStart('AdminServer')
connect('weblogic','welcome1','t3://txhdcwbs07:7501')
start('C1_VC1')
start('C1_VC2')
start('C1_VC3')

But the last 2 server nodes are not starting up with the reboot.

I was able to circumvent it by creating separate scripts for each server but that feels a little clumsy.

Is there a way I can include all 3 servers to be started from the same script?

Thanks,
Soumen

P.S:- I have checked the Auto-Restart option under Server Scripts for each server and they are set to Yes/Checked.
 
Back
Top