• crsctl stop crs -f 停止不成功 (SYSTEMDG in QUIESCING state)


    There exist two workarounds to solve this problem:

    1.  kill these processes: ohasd, gipcd, mdnsd, gpnpd, evmd, and crsd

    ohasd, gipcd, mdnsd, gpnpd, evmd, & crsd

    OR

    2.  reboot the node

    This leaves the SYSTEMDG diskgroup in QUIESCING state (HTML report from Document 470211.1 ):

     

    GROUP_NUMBER NAME STATE TYPE TOTAL_MB FREE_MB OFFLINE_DISKS
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    3 SYSTEMDG QUIESCING NORMAL 894240 892024 0
    0 RECO DISMOUNTED 0 0 0
    0 DATA DISMOUNTED 0 0 0


     

    Note: "The QUIESCING state occurs when the CRSCTL utility attempts to dismount a disk group that contains the Oracle Cluster Repository (OCR). The disk group cannot be dismounted until Cluster Ready Services (CRS) exits, because the disk group contains the OCR."

    As workaround, please kill the next background processes (as root user) on each node:

    ohasd, gipcd, mdnsd, gpnpd, evmd, & crsd

    Example:

    ps -fea | grep ohasd.bin | grep -v grep
    ps -fea | grep gipcd.bin | grep -v grep
    ps -fea | grep mdnsd.bin | grep -v grep
    ps -fea | grep gpnpd.bin | grep -v grep
    ps -fea | grep evmd.bin | grep -v grep
    ps -fea | grep crsd.bin | grep -v grep

     
    ohasd, gipcd, mdnsd, gpnpd, evmd, & crsd

    Example:
     


    [root@node1 ~]# ps -fea | grep ohasd.bin | grep -v grep
    root 13783 1 0 Oct25 ? 00:01:41 /bin/ohasd.bin reboot
    [root@node1 ~]#
    [root@node1 ~]# ps -fea | grep gipcd.bin | grep -v grep
    oracle 13938 1 0 Oct25 ? 00:00:01 /bin/gipcd.bin
    [root@node1 ~]#
    [root@node1 ~]# ps -fea | grep mdnsd.bin | grep -v grep
    oracle 13943 1 0 Oct25 ? 00:00:05 /bin/mdnsd.bin
    [root@node1 ~]#
    [root@node1 ~]# ps -fea | grep gpnpd.bin | grep -v grep
    oracle 14178 1 0 Oct25 ? 00:00:03 /bin/gpnpd.bin
    [root@node1 ~]#
    [root@node1 ~]# ps -fea | grep evmd.bin | grep -v grep
    oracle 14481 1 0 Oct25 ? 00:00:02 /bin/evmd.bin
    [root@node1 ~]#
    [root@node1 ~]# ps -fea | grep crsd.bin | grep -v grep
    root 14684 1 0 Oct25 ? 00:05:31 /bin/crsd.bin reboot

    [root@dmorldb03 ~]# kill -9 13783 13938 13943 14178 14481 14684

  • 相关阅读:
    运行时候报java.lang.NoClassDefFoundError: Could not initialize class
    使用requests库进行网络爬虫:IP请求错误的解决方法
    压缩上传的图片并返回图片路径
    Nuxt.js 深入浅出:目录结构与文件组织详解
    洛谷P1423 小玉在游泳
    使用SQL查询ES:SpringBoot+Jdbc+Mybatis+Elasticsearch整合方案
    软设上午题错题知识点5
    C语言 深度探究C语言中的多文件项目
    【校招VIP】java语言考点之关键字final
    【无标题】
  • 原文地址:https://blog.csdn.net/jnrjian/article/details/134096585