zoukankan      html  css  js  c++  java
  • ORA-29701: unable to connect to Cluster Synchronization Service

    问题描述

    当启动ASM实例时出现以下错误:
    [grid@strong ~]$ sqlplus / as sysasm
    
    SQL*Plus: Release 11.2.0.4.0 Production on Sat Sep 30 17:35:34 2017
    
    Copyright (c) 1982, 2013, Oracle. All rights reserved.
    
    Connected to an idle instance.
    
    SQL> startup
    ORA-01078: failure in processing system parameters
    ORA-29701: unable to connect to Cluster Synchronization Service
    SQL>


    解决办法

    出现上面的错误,原因是没有启动CSS(Cluster Synchronization Services),查看CSS状态如下:
    [grid@strong ~]$ crsctl check css
    CRS-4530: Communications failure contacting Cluster Synchronization Services daemon
    启动CSS:
    [grid@strong ~]$ crsctl start resource ora.cssd
    CRS-2672: Attempting to start 'ora.cssd' on 'strong'
    CRS-2672: Attempting to start 'ora.diskmon' on 'strong'
    CRS-2676: Start of 'ora.diskmon' on 'strong' succeeded
    CRS-2676: Start of 'ora.cssd' on 'strong' succeeded
    [grid@strong ~]$ crsctl check css
    CRS-4529: Cluster Synchronization Services is online
    [grid@strong ~]$
    再次启动ASM实例:
    [grid@strong ~]$ sqlplus / as sysasm
    
    SQL*Plus: Release 11.2.0.4.0 Production on Sat Sep 30 17:51:21 2017
    
    Copyright (c) 1982, 2013, Oracle. All rights reserved.
    
    Connected to an idle instance.
    
    SQL> startup
    ASM instance started
    
    Total System Global Area 1135747072 bytes
    Fixed Size	2260728 bytes
    Variable Size	1108320520 bytes
    ASM Cache	25165824 bytes
    ASM diskgroups mounted
    SQL>



  • 相关阅读:
    gcc各个版本下载
    加减法运算解决乘除法
    蚂蚁碰撞的概率
    ns2.34移植leach协议
    ubantu16.04安装ns2.34 错误
    ubantu安全卸载火狐浏览器
    post和get的区别
    docker加速配置阿里云镜像
    重装系统后,会因为本机保存的公匙不对报错
    集合 set
  • 原文地址:https://www.cnblogs.com/alen-liu-sz/p/12975708.html
Copyright © 2011-2022 走看看