设为首页 收藏本站
查看: 491|回复: 0

[经验分享] Oracle 10g下ocr和votedisk的管理

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2014-8-5 08:37:33 | 显示全部楼层 |阅读模式
ocr和votedisk是什么?

作为集群,oracle cluster需要共享存储来存放整个集群的配置信息,ocr便是用例存放这些配置信息的地方,ocr的存储容量一般不会太大,在10g下,oracle建议256M已经足以。ocr必须需要存储在集群文件系统或者裸设备上,出于性能上的考虑,本人建议将ocr建立在裸设备上,性能高并且管理也不复杂(ocr和votedisk的数量一般不会太多)。ocr中存放的是集群的配置信息,这些信息只能在一个节点上进行维护操作,这一节点叫做Master Node,其他节点会在内存中保留一份ocr的复制,并且只能进行读操作,所有ocr的更新都是有master node来执行并通知各个节点的。

votedisk磁盘存储集中地各个节点并用来进行心跳监测


ocr和votedisk的维护是否需要保持脱机状态?

orc的维护在大多数情况下,是需要联机操作的,因为在各个节点具有ocr.loc文件,联机操作可以保证各个节点的ocr.loc文件及时得到更新。但是部分操作,如repaire和重建等操作需要在脱机状态下进行(后面会详细描述)

        votedisk磁盘的维护往往需要在脱机状态下进行


ocr维护的命令有哪些?

       维护ocr常用的命令有:

       ocrcheck



    [iyunv@node1 bin]# ./ocrcheck -h  
    Name:  
        ocrcheck - Displays health of Oracle Cluster Registry.  
      
    Synopsis:  
        ocrcheck   
      
    Description:  
        prompt> ocrcheck  
        Displays current usage, location and health of the cluster registry  
      
    Notes:  
        A log file will be created in  
        $ORACLE_HOME/log/<hostname>/client/ocrcheck_<pid>.log. Please ensure  
        you have file creation privileges in the above directory before  
        running this tool.  

ocrdump(dump出来的内容可以用来查看ocr中的内容,但是不可以用来进行恢复)



    [iyunv@node1 bin]# ./ocrdump -h  
    Name:  
        ocrdump - Dump contents of Oracle Cluster Registry to a file.  
      
    Synopsis:  
        ocrdump [<filename>|-stdout] [-backupfile <backupfilename>] [-keyname <keyname>] [-xml] [-noheader]  
      
    Description:  
        Default filename is OCRDUMPFILE. Examples are:  
      
        prompt> ocrdump  
        writes cluster registry contents to OCRDUMPFILE in the current directory  
      
        prompt> ocrdump MYFILE  
        writes cluster registry contents to MYFILE in the current directory  
      
        prompt> ocrdump -stdout -keyname SYSTEM  
        writes the subtree of SYSTEM in the cluster registry to stdout  
      
        prompt> ocrdump -stdout -xml  
        writes cluster registry contents to stdout in xml format  
      
    Notes:  
        The header information will be retrieved based on best effort basis.  
        A log file will be created in  
        $ORACLE_HOME/log/<hostname>/client/ocrdump_<pid>.log. Make sure  
        you have file creation privileges in the above directory before  
        running this tool.  

ocrconfig



    [iyunv@node1 bin]# ./ocrconfig -h  
    Name:  
        ocrconfig - Configuration tool for Oracle Cluster Registry.  
      
    Synopsis:  
        ocrconfig [option]  
        option:  
            -export <filename> [-s online]  
                                                - Export cluster register contents to a file  
            -import <filename>                  - Import cluster registry contents from a file  
            -upgrade [<user> [<group>]]  
                                                - Upgrade cluster registry from previous version  
            -downgrade [-version <version string>]  
                                                - Downgrade cluster registry to the specified version  
            -backuploc <dirname>                - Configure periodic backup location  
            -showbackup                         - Show backup information  
            -restore <filename>                 - Restore from physical backup  
            -replace ocr|ocrmirror [<filename>] - Add/replace/remove a OCR device/file  
            -overwrite                          - Overwrite OCR configuration on disk  
            -repair ocr|ocrmirror <filename>    - Repair local OCR configuration  
            -help                               - Print out this help information  
      
    Note:  
        A log file will be created in  
        $ORACLE_HOME/log/<hostname>/client/ocrconfig_<pid>.log. Please ensure  
        you have file creation privileges in the above directory before  
        running this tool.  


Table D-1 The ocrconfig Command Options
Option     Purpose

-backuploc
   

To change an OCR backup file location. For this entry, use a full path that is accessible by all of the nodes.

-downgrade
   

To downgrade an OCR to an earlier version.

-export
   

To export the contents of an OCR into a target file.

-help
   

To display help for the ocrconfig commands.

-import
   

To import the OCR contents from a previously exported OCR file.

-overwrite
   

To update an OCR configuration that is recorded on the OCR with the current OCR configuration information that is found on the node from which you are running this command.

-repair
   

To update an OCR configuration on the node from which you are running this command with the new configuration information specified by this command.

-replace
   

To add, replace, or remove an OCR location.

-restore
   

To restore an OCR from an automatically created OCR backup file.

-showbackup
   

To display the location, timestamp, and the originating node name of the backup files that Oracle created in the past 4 hours, 8 hours, 12 hours, and in the last day and week. You do not have to be the root user to execute the -showbackup option.

-upgrade
   

To upgrade an OCR to a later version.


ocr损坏后怎么恢复?

ocr损坏后通常有两种方式进行修正:恢复和重建。恢复的时候,我们可以从之前export导出的文件恢复,也可以从之前有masternode备份的文件进行恢复。



    [iyunv@node1 bin]# ./crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    httpd_vip      application    0/1    0/0    ONLINE    ONLINE    node2         
    httpd_web      application    0/1    0/4    ONLINE    ONLINE    node2         
    ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/0    0/1    ONLINE    ONLINE    node2         
    ora....b1.inst application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....b2.inst application    0/5    0/0    ONLINE    ONLINE    node2         
    [iyunv@node1 bin]# ./ocrconfig -export a.ocr (导出时最好是关闭crs)  
    [iyunv@node1 bin]# ./crs_stop httpd_web  
    Attempting to stop `httpd_web` on member `node2`  
    Stop of `httpd_web` on member `node2` succeeded.  
    [iyunv@node1 bin]# ./crs_stop httpd_vip  
    Attempting to stop `httpd_vip` on member `node2`  
    Stop of `httpd_vip` on member `node2` succeeded.  
    [iyunv@node1 bin]# ./crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    httpd_vip      application    0/1    0/0    OFFLINE   OFFLINE                 
    httpd_web      application    0/1    0/4    OFFLINE   OFFLINE                 
    ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/0    0/1    ONLINE    ONLINE    node2         
    ora....b1.inst application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....b2.inst application    0/5    0/0    ONLINE    ONLINE    node2         
    [iyunv@node1 bin]# ./crs_unregister httpd_web  
    [iyunv@node1 bin]# ./crs_unregister httpd_vip  
    [iyunv@node1 bin]# ./crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/0    0/1    ONLINE    ONLINE    node2         
    ora....b1.inst application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....b2.inst application    0/5    0/0    ONLINE    ONLINE    node2         
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crs_stat -t -v  
    root@node2's password:   
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/0    0/1    ONLINE    ONLINE    node2         
    ora....b1.inst application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....b2.inst application    0/5    0/0    ONLINE    ONLINE    node2         
    [iyunv@node1 bin]# ./corconfig -import a.ocr  
    -bash: ./corconfig: No such file or directory  
    <strong>[iyunv@node1 bin]# ./ocrconfig -import a.ocr  
    PROT-19: Cannot proceed while clusterware is running. Shutdown clusterware first(<span style="background-color: rgb(255, 0, 0);">在导入ocr是集群必须要关闭</span>)</strong>  
    [iyunv@node1 bin]# ./crsctl stop crs  
    Stopping resources. This could take several minutes.  
    Successfully stopped CRS resources.  
    Stopping CSSD.  
    Shutting down CSS daemon.  
    Shutdown request successfully issued.  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl stop crs  
    root@node2's password:   
    Stopping resources. This could take several minutes.  
    Successfully stopped CRS resources.  
    Stopping CSSD.  
    Shutting down CSS daemon.  
    Shutdown request successfully issued.  
    [iyunv@node1 bin]# ./ocrconfig -import a.ocr  
    [iyunv@node1 bin]# ./crsctl start crs  
    Attempting to start CRS stack   
    The CRS stack will be started shortly  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl start crs  
    root@node2's password:   
    Attempting to start CRS stack   
    The CRS stack will be started shortly  
    [iyunv@node1 bin]# ./crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    httpd_vip      application    0/1    0/0    ONLINE    ONLINE    node1         
    httpd_web      application    1/1    0/4    ONLINE    ONLINE    node1         
    ora....SM1.asm application    0/5    0/0    ONLINE    OFFLINE                 
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/0    0/1    ONLINE    OFFLINE                 
    ora....b1.inst application    0/5    0/0    ONLINE    OFFLINE                 
    ora....b2.inst application    0/5    0/0    ONLINE    OFFLINE   


下面是由restore来恢复ocr



    [iyunv@node1 crs]# ll -h /u01/app/crs_home/bin/a.ocr   
    -rw-r--r-- 1 root root 93K Aug  1 16:06 /u01/app/crs_home/bin/a.ocr  
    [iyunv@node1 crs]# ll -h   
    total 25M  
    -rw-r--r-- 1 root   root 4.4M Jul 31 12:36 35521234  
    -rw-r--r-- 1 oracle root 3.5M Jul 22 14:04 backup00.ocr  
    -rw-r--r-- 1 oracle root 3.5M Jul 10 14:04 backup01.ocr  
    -rw-r--r-- 1 oracle root 3.5M Jul  9 14:00 backup02.ocr  
    -rw-r--r-- 1 oracle root 3.5M Jul 22 14:04 day.ocr  
    -rw-r--r-- 1 oracle root  85K Jul 24 15:27 ocr.exp  
    -rw-r--r-- 1 oracle root 3.5M Jul 10 14:04 week_.ocr  
    -rw-r--r-- 1 oracle root 3.5M Jul  3 14:15 week.ocr  
    [iyunv@node1 crs]# ocrconfig -restore /u01/app/crs_home/bin/a.ocr   
    PROT-22: Storage too small  
    [iyunv@node1 crs]# ocrconfig -restore /u01/app/crs_home/cdata/crs/backup00.ocr   
    PROT-19: Cannot proceed while clusterware is running. Shutdown clusterware first  

说明:export导出的文件只能是由import导入,restore时,cluster也必须全部离线

具体的操作过程这里不再演示,


10g下怎么增加或者删除ocr磁盘?

在10g中,如果在安装cluster时,如果选择external  redundancy那么ocr只能选择一个磁盘,但是通过命令行我们依然可以添加新的磁盘到ocr。如果我们需要替换现有的ocr磁盘,那么必须同时存在两份ocr磁盘才可以,即primary ocr和mirror ocr同时存在时,才可以替换primary ocr或者mirror ocr。

操作实例:



    [iyunv@node1 bin]# ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw1  
                                        Device/File integrity check succeeded  
      
                                        Device/File not configured  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# ocrconfig -replace ocr /dev/raw/raw3  
    PROT-16: Internal Error  
    [iyunv@node1 bin]# ocrconfig -replace ocrmirror /dev/raw/raw4  
    [iyunv@node1 bin]# ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw1  
                                        Device/File integrity check succeeded  
         Device/File Name         : /dev/raw/raw4  
                                        Device/File integrity check succeeded  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# ocrconfig -replace ocr /dev/raw/raw3  
    [iyunv@node1 bin]# ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw3  
                                        Device/File integrity check succeeded  
         Device/File Name         : /dev/raw/raw4  
                                        Device/File integrity check succeeded  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# crsctl check crs  
    CSS appears healthy  
    CRS appears healthy  
    EVM appears healthy  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/ocrcheck  
    Warning: Permanently added the RSA host key for IP address '192.168.100.32' to the list of known hosts.  
    root@node2's password:   
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw3  
                                        Device/File integrity check succeeded  
         Device/File Name         : /dev/raw/raw4  
                                        Device/File integrity check succeeded  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# ssh node2 cat /etc/oracle/ocr.loc   
    root@node2's password:   
    #Device/file /dev/raw/raw1 getting replaced by device /dev/raw/raw3   
    ocrconfig_loc=/dev/raw/raw3  
    ocrmirrorconfig_loc=/dev/raw/raw4  
    local_only=false  

新增或者删除orc最好在所有节点都在线时进行,否则会出现节点信息不同步的情况,

例如:如果在节点node2关闭时,在节点node1进行ocr删除操作,结果如下


    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl stop crs  
    root@node2's password:   
    Permission denied, please try again.  
    root@node2's password:   
    Stopping resources. This could take several minutes.  
    Successfully stopped CRS resources.  
    Stopping CSSD.  
    Shutting down CSS daemon.  
    Shutdown request successfully issued.  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl check crs  
    root@node2's password:   
    Failure 1 contacting CSS daemon  
    Cannot communicate with CRS  
    Cannot communicate with EVM   
    [iyunv@node1 bin]# ./ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw3  
                                        Device/File integrity check succeeded  
         Device/File Name         : /dev/raw/raw4  
                                        Device/File integrity check succeeded  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# ./ocrconfig -replace ocrmirror   
    [iyunv@node1 bin]# ./ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw3  
                                        Device/File integrity check succeeded  
      
                                        Device/File not configured  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 bin]# cat /etc/oracle/ocr.loc   
    #Device/file /dev/raw/raw4 being deleted   
    ocrconfig_loc=/dev/raw/raw3  
    local_only=false[iyunv@node1 bin]# ssh node2 cat /etc/oracle/ocr.loc   
    root@node2's password:   
    Permission denied, please try again.  
    root@node2's password:   
    #Device/file /dev/raw/raw1 getting replaced by device /dev/raw/raw3   
    ocrconfig_loc=/dev/raw/raw3  
    ocrmirrorconfig_loc=/dev/raw/raw4  
    local_only=false[iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl start crs  
    root@node2's password:   
    Attempting to start CRS stack   
    The CRS stack will be started shortly  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl check crs  
    root@node2's password:   
    Failure 1 contacting CSS daemon  
    Cannot communicate with CRS  
    Cannot communicate with EVM   
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/ocrconfig -repair ocrmirror  
    root@node2's password:   
    [iyunv@node1 bin]# ssh node2 cat /etc/oracle/ocr.loc   
    root@node2's password:   
    #Device/file /dev/raw/raw4 being deleted   
    ocrconfig_loc=/dev/raw/raw3  
    local_only=false[r  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl start crs  
    root@node2's password:   
    Attempting to start CRS stack   
    The CRS stack will be started shortly  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl check crs  
    root@node2's password:   
    CSS appears healthy  
    CRS appears healthy  
    EVM appears healthy  


结论:在增加、删除、替换ocr时,所有节点最好同时在线,在导入导出或者恢复ocr是,cluster节点需要关闭


如何添加/删除votedisk?

添加删除votedisk可以使用crsctl命令:



    [iyunv@node1 bin]# ./crsctl   
    Usage: crsctl check  crs          - checks the viability of the CRS stack  
           crsctl check  cssd         - checks the viability of CSS  
           crsctl check  crsd         - checks the viability of CRS  
           crsctl check  evmd         - checks the viability of EVM  
           crsctl set    css <parameter> <value> - sets a parameter override  
           crsctl get    css <parameter> - gets the value of a CSS parameter  
           crsctl unset  css <parameter> - sets CSS parameter to its default  
           crsctl query  css votedisk    - lists the voting disks used by CSS  
           crsctl add    css votedisk <path> - adds a new voting disk  
           crsctl delete css votedisk <path> - removes a voting disk  
           crsctl enable  crs    - enables startup for all CRS daemons  
           crsctl disable crs    - disables startup for all CRS daemons  
           crsctl start crs  - starts all CRS daemons.  
           crsctl stop  crs  - stops all CRS daemons. Stops CRS resources in case of cluster.  
           crsctl start resources  - starts CRS resources.   
           crsctl stop resources  - stops  CRS resources.   
           crsctl debug statedump evm  - dumps state info for evm objects  
           crsctl debug statedump crs  - dumps state info for crs objects  
           crsctl debug statedump css  - dumps state info for css objects  
           crsctl debug log css [module:level]{,module:level} ...   
                                 - Turns on debugging for CSS   
           crsctl debug log crs [module:level]{,module:level} ...   
                                 - Turns on debugging for CRS   
           crsctl debug log evm [module:level]{,module:level} ...   
                                 - Turns on debugging for EVM  
           crsctl debug log res <resname:level> turns on debugging for resources  
           crsctl query crs softwareversion [<nodename>] - lists the version of CRS software installed  
           crsctl query crs activeversion - lists the CRS software operating version  
           crsctl lsmodules css - lists the CSS modules that can be used for debugging  
           crsctl lsmodules crs - lists the CRS modules that can be used for debugging  
           crsctl lsmodules evm - lists the EVM modules that can be used for debugging  
      
     If necesary any of these commands can be run with additional tracing by  
     adding a "trace" argument at the very front.  
     Example: crsctl trace check css  


首先在线添加:



    [iyunv@node1 bin]# ./crsctl add css votedisk /dev/raw/raw4  
    Cluster is not in a ready state for online disk addition  
    [iyunv@node1 bin]# ./crsctl add css votedisk /dev/raw/raw4 -force  
    Now formatting voting disk: /dev/raw/raw4  
    successful addition of votedisk /dev/raw/raw4.  
    [iyunv@node1 bin]# ./crsctl check crs  
    CSS appears healthy  
    CRS appears healthy  
    EVM appears healthy  
    [iyunv@node1 bin]# ./crsctl query css votedisk  
     0.     0    /dev/raw/raw2  
     1.     0    /dev/raw/raw4  
      
    located 2 votedisk(s).  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl query css votedisk  
    root@node2's password:   
     0.     0    /dev/raw/raw2  
     1.     0    /dev/raw/raw4  
      
    located 2 votedisk(s).  
    [iyunv@node1 bin]# ./crsctl stop crs  
    Stopping resources. This could take several minutes.  
    Successfully stopped CRS resources.  
    Stopping CSSD.  
    Shutting down CSS daemon.  
    Shutdown request successfully issued.  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl stop crs  
    root@node2's password:   
    Stopping resources. This could take several minutes.  
    Successfully stopped CRS resources.  
    Stopping CSSD.  
    Shutting down CSS daemon.  
    Shutdown request successfully issued.  
    [iyunv@node1 bin]# ./crsctl start crs  
    Attempting to start CRS stack   
    The CRS stack will be started shortly  
    [iyunv@node1 bin]# ssh node2 /u01/app/crs_home/bin/crsctl start crs  
    root@node2's password:   
    Attempting to start CRS stack   
    The CRS stack will be started shortly            
    [iyunv@node1 bin]# ./crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    ora....SM1.asm application    0/5    0/0    ONLINE    ONLINE    node1         
    ora....E1.lsnr application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora....SM2.asm application    0/5    0/0    ONLINE    ONLINE    node2         
    ora....E2.lsnr application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2         
    ora.racdb.db   application    0/1    0/1    ONLINE    ONLINE    node1         
    ora....b1.inst application    0/5    0/0    ONLINE    OFFLINE                 
    ora....b2.inst application    0/5    0/0    ONLINE    ONLINE    node2   

删除操作不再演示

看来在线添加votedisk是可以成功的,在10g下需要使用 -force选项,但是网上有资料表示:在添加或者删除votedisk时,最好停掉所有应用。


如何重新创建ocr和votedisk(在ocr和votedisk损坏,并且没有备份时,这是非常有用的)?

首先,在所有的节点停止cluster



    [iyunv@node1 ~]# ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3852  
         Available space (kbytes) :    1121884  
         ID                       :  849560479  
         Device/File Name         : /dev/raw/raw1  
                                        Device/File integrity check succeeded  
      
                                        Device/File not configured  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 ~]# crsctl query css votedisk  
     0.     0    /dev/raw/raw2  
     1.     0    /dev/raw/raw4  
      
    located 2 votedisk(s).  
    [iyunv@node1 ~]# crsctl check crs  
    Failure 1 contacting CSS daemon  
    Cannot communicate with CRS  
    Cannot communicate with EVM   
    [iyunv@node1 ~]# ssh node2 /u01/app/crs_home/bin/crsctl check crs  
    Failure 1 contacting CSS daemon  
    Cannot communicate with CRS  
    Cannot communicate with EVM   


在每个节点执行rootdelete.sh脚本



    [iyunv@node1 ~]# cd $CRS_HOME/install  
    [iyunv@node1 install]# ./rootdelete.sh  
    Shutting down Oracle Cluster Ready Services (CRS):  
    Stopping resources. This could take several minutes.  
    Error while stopping resources. Possible cause: CRSD is down.  
    Shutdown has begun. The daemons should exit soon.  
    Checking to see if Oracle CRS stack is down...  
    Oracle CRS stack is not running.  
    Oracle CRS stack is down now.  
    Removing script for Oracle Cluster Ready services  
    Updating ocr file for downgrade  
    Cleaning up SCR settings in '/etc/oracle/scls_scr'  
    Cleaning up Network socket directories  
    [iyunv@node1 install]# ssh node2 /u01/app/crs_home/install/rootdelete.sh   
    Shutting down Oracle Cluster Ready Services (CRS):  
    Stopping resources. This could take several minutes.  
    Error while stopping resources. Possible cause: CRSD is down.  
    Shutdown has begun. The daemons should exit soon.  
    Checking to see if Oracle CRS stack is down...  
    Oracle CRS stack is not running.  
    Oracle CRS stack is down now.  
    Removing script for Oracle Cluster Ready services  
    Updating ocr file for downgrade  
    Cleaning up SCR settings in '/etc/oracle/scls_scr'  
    Cleaning up Network socket directories  


在任意节点上,执行rootdeinstall.sh脚本(只需在一个节点上运行即可)



    [iyunv@node1 install]# ./rootdeinstall.sh   
      
    Removing contents from OCR device  
    2560+0 records in  
    2560+0 records out  
    10485760 bytes (10 MB) copied, 0.486033 seconds, 21.6 MB/s  


在所有节点上执行root.sh脚本



    [iyunv@node1 crs_home]# pwd  
    /u01/app/crs_home  
    [iyunv@node1 crs_home]# ./root.sh  
    WARNING: directory '/u01/app' is not owned by root  
    WARNING: directory '/u01' is not owned by root  
    No value set for the CRS parameter CRS_OCR_LOCATIONS. Using Values in paramfile.crs  
    Checking to see if Oracle CRS stack is already configured  
      
    Setting the permissions on OCR backup directory  
    Setting up NS directories  
    Oracle Cluster Registry configuration upgraded successfully  
    WARNING: directory '/u01/app' is not owned by root  
    WARNING: directory '/u01' is not owned by root  
    Successfully accumulated necessary OCR keys.  
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.  
    node <nodenumber>: <nodename> <private interconnect name> <hostname>  
    node 1: node1 node1-priv node1  
    node 2: node2 node2-priv node2  
    Creating OCR keys for user 'root', privgrp 'root'..  
    Operation successful.  
    Now formatting voting device: /dev/raw/raw2  
    Format of 1 voting devices complete.  
    Startup will be queued to init within 30 seconds.  
    Adding daemons to inittab  
    Expecting the CRS daemons to be up within 600 seconds.  
    CSS is active on these nodes.  
        node1  
    CSS is inactive on these nodes.  
        node2  
    Local node checking complete.  
    Run root.sh on remaining nodes to start CRS daemons.  
    [iyunv@node1 crs_home]# ssh node2 /u01/app/crs_home/root.sh   
    WARNING: directory '/u01/app' is not owned by root  
    WARNING: directory '/u01' is not owned by root  
    No value set for the CRS parameter CRS_OCR_LOCATIONS. Using Values in paramfile.crs  
    Checking to see if Oracle CRS stack is already configured  
      
    Setting the permissions on OCR backup directory  
    Setting up NS directories  
    Oracle Cluster Registry configuration upgraded successfully  
    WARNING: directory '/u01/app' is not owned by root  
    WARNING: directory '/u01' is not owned by root  
    clscfg: EXISTING configuration version 3 detected.  
    clscfg: version 3 is 10G Release 2.  
    Successfully accumulated necessary OCR keys.  
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.  
    node <nodenumber>: <nodename> <private interconnect name> <hostname>  
    node 1: node1 node1-priv node1  
    node 2: node2 node2-priv node2  
    clscfg: Arguments check out successfully.  
      
    NO KEYS WERE WRITTEN. Supply -force parameter to override.  
    -force is destructive and will destroy any previous cluster  
    configuration.  
    Oracle Cluster Registry for cluster has already been initialized  
    Startup will be queued to init within 30 seconds.  
    Adding daemons to inittab  
    Expecting the CRS daemons to be up within 600 seconds.  
    CSS is active on these nodes.  
        node1  
        node2  
    CSS is active on all nodes.  
    Waiting for the Oracle CRSD and EVMD to start  
    Oracle CRS stack installed and running under init(1M)  
    Running vipca(silent) for configuring nodeapps  
    Invalid interface "255.255.255.0/eth0" entered in an input argument.  
      
    [iyunv@node1 crs_home]# oifcfg iflist  
    eth0  192.168.100.0  
    eth1  100.100.100.0  
    [iyunv@node1 crs_home]# crs_stat -t -v  
    CRS-0202: No resources are registered.  



    [iyunv@node1 crs_home]# crsctl check crs  
    CSS appears healthy  
    CRS appears healthy  
    EVM appears healthy  



    [iyunv@node1 crs_home]# ssh node2 /u01/app/crs_home/bin/crsctl check crs  
    CSS appears healthy  
    CRS appears healthy  
    EVM appears healthy  


从上面可以看出,crs已经正常运行,但是vip one gns等资源没有配置成功(可能是因为执行我修改过ip的原因),手工调用vipca图形界面后:



    [iyunv@node1 ~]# crs_stat -t -v  
    Name           Type           R/RA   F/FT   Target    State     Host         
    ----------------------------------------------------------------------  
    ora.node1.gsd  application    0/5    0/0    ONLINE    ONLINE    node1         
    ora.node1.ons  application    0/3    0/0    ONLINE    ONLINE    node1         
    ora.node1.vip  application    0/0    0/0    ONLINE    ONLINE    node1         
    ora.node2.gsd  application    0/5    0/0    ONLINE    ONLINE    node2         
    ora.node2.ons  application    0/3    0/0    ONLINE    ONLINE    node2         
    ora.node2.vip  application    0/0    0/0    ONLINE    ONLINE    node2   


添加剩余资源到rac中,如asm,instance,linstener

调用netca添加listener,使用srvctl添加其他服务,至此重建ocr和votedisk完成


有一点需要注意,ocr和votedisk重建后,ocr磁盘和votedisk磁盘会设置为cluster新建时的初始值,如何后续我们对此进行过修改,则需要我们手工来进行再次维护了



    [iyunv@node1 ~]# ocrcheck  
    Status of Oracle Cluster Registry is as follows :  
         Version                  :          2  
         Total space (kbytes)     :    1125736  
         Used space (kbytes)      :       3760  
         Available space (kbytes) :    1121976  
         ID                       : 1334010282  
         Device/File Name         : /dev/raw/raw1  
                                        Device/File integrity check succeeded  
      
                                        Device/File not configured  
      
         Cluster registry integrity check succeeded  
      
    [iyunv@node1 ~]# crsctl query css votedisk  
     0.     0    /dev/raw/raw2  
      
    located 1 votedisk(s).  
    [iyunv@node1 ~]#   


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.iyunv.com/thread-23215-1-1.html 上篇帖子: ORA-00911: 无效字符 下篇帖子: SGA_TARGET与SHMMAX的关系 Oracle
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表