zoukankan      html  css  js  c++  java
  • 11g与12c启动,关闭RAC

    oracle11g 关闭,启动顺序

    1、关闭数据库(oracle)
    srvctl stop database -d rac

    2、关闭集群(root)
    crsctl stop cluster -all

    3、验证
    crs_stat -t -v


    1、开启集群(root)
    crsctl start cluster -all

    2、开启数据库(oracle)
    srvctl start database -d rac

    3、验证
    crs_stat -t -v
    ############################################################
    oracle12c 关闭,启动顺序

    1、关闭数据库(oracle)
    srvctl stop database -d rac

    2、关闭集群(root)
    crsctl stop crs -all #可以用于11g和12c
    或者crsctl stop cluster -all

    2、关闭节点服务(root)
    srvctl stop nodeapps

    4、验证
    crs_stat -t -v


    1、开启集群(root)
    crsctl start crs -all

    2、开启数据库(oracle)
    srvctl start database -d rac

    3、关闭节点服务(root)
    srvctl start nodeapps

    4、验证
    crs_stat -t -v
    ===========================================
    crsctl start/stop crs and crsctl start/stop cluster 区别

    1 crsctl start/stop crs 是单节管理
    crsctl start/stop cluster [-all 所有节点] 可以管理多个节点

    2 crsctl start/stop crs 管理crs 包含进程 OHASD
    crsctl start/stop cluster 不包含OHASD进程 必须要先启动 OHASD进程才可以使用

    3 11gr2 rac 手动启动或关闭过程
    使用crsctl start/stop cluster手动启动和关闭的过程如下:
    crsctl start/stop cluster -all 会启动所有OHAS是启动状态的所有节点
    crsctl stop crs --每个节点

    使用crsctl start/stop crs手动启动/关闭流程
    节点1
    crsctl start/stop crs 实际上后面会把Oracle crs 管理的资源都会启动

    节点2
    crsctl start/stop crs

    ......

    Enable CRS to start on reboot
    crsctl enable crs
    Disable CRS to start on reboot
    crsctl disable crs

    4 查询资源启动情况
    crsctl stat res -init -t


    注:

    crsctl start/stop crs 与crsctl start/stop has 作用相同

  • 相关阅读:
    Row Cache lock Problem
    AIX操作系统上安装Oracle数据库必不可少的几项检查工作
    如何使用MOS风格的代码背景?
    在Ubuntu 10上使用DLink DWA 130无线网卡
    PL/SQL Developer View SQL功能的一个Bug
    11g新特性SQL PLUS 错误日志
    生病了。。。
    ORA00600: [7005], [192]内部错误一例
    Linux:vmware下ubuntu更换网卡后无法识别网卡
    Linux:LFS:第一天:今天开始学习,计划7天时间
  • 原文地址:https://www.cnblogs.com/vmsysjack/p/12186822.html
Copyright © 2011-2022 走看看