correct startup order
Hi, All
After reading manuals for 12.2.1.1 , I have a couple of questions:
What is a correct startup commands for production?
I have doubts that following script will make nodemanager restart failed component:
#!/bin/bash
# Start WebLogic Domain
nohup $DOMAIN_HOME/bin/startWebLogic.sh > ~/WebLogic.log 2>&1 &
sleep 60
# Start NodeManager
nohup $DOMAIN_HOME/bin/startNodeManager.sh > ~/NodeManager.log 2>&1 &
sleep 60
# Start the managed Servers
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh WLS_FORMS > ~/forms.log 2>&1 &
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh WLS_REPORTS > ~/reports.log 2>&1 &
# Start the web tier.
$DOMAIN_HOME/bin/startComponent.sh ohs1
$DOMAIN_HOME/bin/startComponent.sh ohs2
Basically, https://docs.oracle.com/cd/E24329_01/web.1211/e21050/overview.htm#NODEM129