WLS - Start Weblogic
Weblogic 11g
#
# start weblogic
#
cd $WL_DOMAIN
nohup ./startWebLogic.sh &
#
# start Node Manager
#
cd $WL_HOME/server/bin
nohup ./startNodeManager.sh &
Weblogic 12g
#
# auto login
#
mkdir -p $DOMAIN_HOME/servers/AdminServer/security
echo "username=weblogic" > $DOMAIN_HOME/servers/AdminServer/security/boot.properties
echo "password=Welcome0" >> $DOMAIN_HOME/servers/AdminServer/security/boot.properties
#
#start Node Manager
#
cd $DOMAIN_HOME/bin
nohup ./startNodeManager.sh > ~/startNodeManager.nohup.out 2>&1 &
#
# start weblogic
#
cd $DOMAIN_HOME/bin
nohup $DOMAIN_HOME/startWebLogic.sh > ~/startWebLogic.nohup.out 2>&1 &
#
# start MS
#
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh soa_server1 http://wls-server:7001 > ~/soa_server1.nohup.out 2>&1 &
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh soa_server2 http://wls-server:7001 > ~/soa_server2.nohup.out 2>&1 &
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh osb_server1 http://wls-server:7001 > ~/osb_server1.nohup.out 2>&1 &
nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh osb_server2 http://wls-server:7001 > ~/osb_server2.nohup.out 2>&1 &
Comments