• stopManagedWebLogic.sh强制关闭Managed Server


    Adding force shutdown of managed server  in weblogic.
     
    ------------------------------------------------------------------------------------------------------------------------------------
     
    if we run the stopManagedweblogic.sh script. with fore="true"  doesn't work as by default the script. picks force='false'.
     
    eg : sh stopManagedWebLogic.sh oim_server1 t3://xxxxx:7011 weblogic cccccu force="true"
     
     
     
    you see the below message in log
     
    Shutting down the server AdminServer with force=false while connected to AdminServer ...
    
    
     
     
    To set force shutdown by default we need perform. the below steps
     
    cp stopWebLogic.sh stopWebLogic.sh stopWebLogic.sh.02142012
     
    Change line as below
     
    echo "shutdown('${SERVER_NAME}','Server')" >>"shutdown.py"
     
    to
     
    echo "shutdown('${SERVER_NAME}','Server',force='true')" >>"shutdown.py"
    
  • 相关阅读:
    消息队列介绍
    SpringBoot随笔-SpringBoot集成Druid
    Redis-Redis基本类型及使用Java操作
    信息安全
    计算机网络基础
    多媒体技术
    数据库基础
    程序设计基础
    计算机软件体系
    计算机硬件体系
  • 原文地址:https://www.cnblogs.com/jjzd/p/6826015.html
Copyright © 2020-2023  润新知