Weblogic components Start/Stop Procedure
Node Manager startup1. cd /biprd/p01/Middleware/wlserver_10.3/server/bin
./setWLSEnv.sh
nohup sh ./startNodeManager.sh > /tmp/startNodeManager.log &
Weblogic startup
2. cd /biprd/p01/Middleware/user_projects/domains/bi_domain/bin
./setDomainEnv.sh
nohup ./startWebLogic.sh -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic123 -Dweblogic.security.allowCryptoJDefaultPRNG=true > /tmp/startWebLogic.log &
nohup ./startWebLogic.sh & (Use this, incase password is configured in boot.properties file)
Managed Weblogic startup
3. cd /biprd/p01/Middleware/user_projects/domains/bi_domain/bin
./setDomainEnv.sh
nohup ./startManagedWebLogic.sh bi_server1 http://172.16.45.112:7001 -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic123 & > /tmp/startManagedWebLogic.log &
nohup ./startManagedWeblogic.sh bi_server1 (Use this incase username,password,URL is configured in boot.properties file)
1. Node Manager Shutdown
kill -9 `ps -ef | grep [N]odeManager | awk '{print $2}'`
2. Weblogic shutdown
cd /biprd/p01/Middleware/user_projects/domains/bi_domain/bin
./setDomainEnv.sh
./stopWebLogic.sh -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic123 -Dweblogic.security.allowCryptoJDefaultPRNG=true
./stopWebLogic.sh & (Use this, incase password is configured in boot.properties file)
3. Managed weblogic shutdown
./setDomainEnv.sh
./stopManagedWebLogic.sh bi_server1 http://172.16.45.112:7001 -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic123
nohup ./stopManagedWebLogic.sh bi_server1 (Use this incase username,password,URL is configured in boot.properties file)
No comments:
Post a Comment