Oracle RAC學習筆記02-RAC維護工具集


Oracle RAC學習筆記02-RAC維護工具集

RAC維護工具集

本文實驗環境:
10.2.0.5 Clusterware + RAC
11.2.0.4 GI + RAC
通過對比命令的輸出,也可大致了解10g RAC 到 11g RAC 發生的變化。

1.節點層

**1) olsnodes** olsnodes: 列出集群中所有的節點。

10g(10.2.0.5):

[oracle@oradb28 ~]$ olsnodes -h
Usage: olsnodes [-n] [-p] [-i] [<node> | -l] [-g] [-v]
        where
                -n print node number with the node name
                -p print private interconnect name with the node name
                -i print virtual IP name with the node name
                <node> print information for the specified node
                -l print information for the local node 
                -g turn on logging 
                -v run in verbose mode 

11g(11.2.0.4):

[grid@oradb23 ~]$ olsnodes -h
Usage: olsnodes [ [-n] [-i] [-s] [-t] [<node> | -l [-p]] | [-c] ] [-g] [-v]
        where
                -n print node number with the node name
                -p print private interconnect address for the local node
                -i print virtual IP address with the node name
                <node> print information for the specified node
                -l print information for the local node 
                -s print node status - active or inactive 
                -t print node type - pinned or unpinned 
                -g turn on logging 
                -v Run in debug mode; use at direction of Oracle Support only.
                -c print clusterware name

2.網絡層

公有網絡和私有網絡。 **1) oifcfg** oifcfg: Oracle Interface配置工具。

10g(10.2.0.5):

[oracle@oradb28 ~]$ oifcfg

Name:
        oifcfg - Oracle Interface Configuration Tool.

Usage:  oifcfg iflist [-p [-n]]
        oifcfg setif {-node <nodename> | -global} {<if_name>/<subnet>:<if_type>}...
        oifcfg getif [-node <nodename> | -global] [ -if <if_name>[/<subnet>] [-type <if_type>] ]
        oifcfg delif [-node <nodename> | -global] [<if_name>[/<subnet>]]
        oifcfg [-help]

        <nodename> - name of the host, as known to a communications network
        <if_name>  - name by which the interface is configured in the system
        <subnet>   - subnet address of the interface
        <if_type>  - type of the interface { cluster_interconnect | public | storage }

11g(11.2.0.4):

[grid@oradb23 ~]$ oifcfg

Name:
        oifcfg - Oracle Interface Configuration Tool.

Usage:  oifcfg iflist [-p [-n]]
        oifcfg setif {-node <nodename> | -global} {<if_name>/<subnet>:<if_type>}...
        oifcfg getif [-node <nodename> | -global] [ -if <if_name>[/<subnet>] [-type <if_type>] ]
        oifcfg delif {{-node <nodename> | -global} [<if_name>[/<subnet>]] [-force] | -force}
        oifcfg [-help]

        <nodename> - name of the host, as known to a communications network
        <if_name>  - name by which the interface is configured in the system
        <subnet>   - subnet address of the interface
        <if_type>  - type of the interface { cluster_interconnect | public }

2) x$ksxpia
集群的網絡信息。
SQL> select * from x$ksxpia;

10g(10.2.0.5):

SQL> select * from x$ksxpia;

ADDR                   INDX    INST_ID PUB_KSXPIA PICKED_KSXPIA                       NAME_KSXPIA     IP_KSXPIA
---------------- ---------- ---------- ---------- ----------------------------------- --------------- ----------------
00002AFCDBB29FB8          0          2 N          OCR                                 eth1            10.10.10.28
00002AFCDBB29FB8          1          2 Y          OCR                                 eth0            192.168.1.28

11g(11.2.0.4):

SQL> select * from x$ksxpia;

ADDR                   INDX    INST_ID PUB_KSXPIA PICKED_KSXPIA                       NAME_KSXPIA     IP_KSXPIA
---------------- ---------- ---------- ---------- ----------------------------------- --------------- ----------------
00007F2490C58CE0          0          1 N          GPnP                                eth1:1          169.254.142.42
00007F2490C58CE0          1          1 Y          GPnP                                eth0            192.168.1.23
00007F2490C58CE0          2          1 Y          GPnP                                eth0:1          192.168.1.53
00007F2490C58CE0          3          1 Y          GPnP                                eth0:2          192.168.1.60

發現11.2.0.4版本,內網地址是169.254.xx.xx,是HAIP特性。
另外11.2.0.4版本,會把自己節點的vip和scan vip也查詢出來。

3.集群層

crsctl; ocrcheck, ocrdump, ocrconfig; crs_profile, crs_register, crs_start, crs_stat, crs_relocate, crs_stop, crs_unregister;

1) crsctl
--檢查整個CRS棧
crsctl check crs
--檢查votedisk磁盤位置
crsctl query css votedisk
--查看css misscount
crsctl get css misscount

10g(10.2.0.5):

[oracle@oradb27 ~]$ crsctl check crs
CSS appears healthy
CRS appears healthy
EVM appears healthy
[oracle@oradb27 ~]$ crsctl query css votedisk
 0.     0    /dev/raw/raw3
 1.     0    /dev/raw/raw4
 2.     0    /dev/raw/raw5

located 3 votedisk(s).
[oracle@oradb27 ~]$ crsctl get css misscount
60[oracle@oradb27 ~]$ 

--crsctl 命令的幫助選項
[oracle@oradb27 ~]$ 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

11g(11.2.0.4)

[grid@oradb23 ~]$ crsctl check crs
CRS-4638: Oracle High Availability Services is online
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online
[grid@oradb23 ~]$ crsctl query css votedisk
##  STATE    File Universal Id                File Name Disk group
--  -----    -----------------                --------- ---------
 1. ONLINE   03e741c03bbe4f4ebfe09d4ef5ec3ac8 (/dev/asm-diska) [OCR]
Located 1 voting disk(s).
[grid@oradb23 ~]$ crsctl get css misscount
CRS-4678: Successful get misscount 30 for Cluster Synchronization Services.

--crsctl 命令的幫助選項
[grid@oradb23 ~]$ crsctl 
Usage: crsctl <command> <object> [<options>]
    command: enable|disable|config|start|stop|relocate|replace|status|add|delete|modify|getperm|setperm|check|set|get|unset|debug|lsmodules|query|pin|unpin|discover|release|request
For complete usage, use:
    crsctl [-h | --help]
For detailed help on each command and object and its options use:
    crsctl <command> <object> -h  e.g. crsctl relocate resource -h

--crsctl lsmodules
crsctl lsmodules css
crsctl lsmodules crs
crsctl lsmodules evm

10g(10.2.0.5):

[oracle@oradb27 ~]$ crsctl lsmodules css
The following are the CSS modules :: 
    CSSD
    COMMCRS
    COMMNS

11g(11.2.0.4):

[root@oradb23 ~]# /u01/app/11.2.0/grid/bin/crsctl lsmodules css
List CSSD Debug Module: CLSF
List CSSD Debug Module: CSSD
List CSSD Debug Module: GIPCCM
List CSSD Debug Module: GIPCGM
List CSSD Debug Module: GIPCNM
List CSSD Debug Module: GPNP
List CSSD Debug Module: OLR
List CSSD Debug Module: SKGFD

--以下需要使用root用戶執行:

--配置CRS棧是否自動啟動:
crsctl disable crs
crsctl enable crs

--關閉/啟動crs
crsctl stop crs
crsctl start crs

--11g的 crsctl start cluster 和 crsctl start crs區別:

crsctl start/stop crs - Manage start/stop the entire Oracle Clusterware stack on a node, including the OHASD process, this command is to be used only on the local node..
crsctl start/stop cluster - Manage start/stop the Oracle Clusterware stack on local node if you do not specify either -all or -n and nodes remote if option -n or -all be specified , NOT including the OHASD process. You can't start/stop clusterware stack without OHASD process running.
Despite crsctl start/stop crs manage entire Oracle Clusterware stack on local node crsctl start/stop crs not allow you to manage remote nodes, unlike crsctl start/stop cluster that allows you to manage all the nodes, but if the process OASH is runing.
To manage Oracle Clusterware Stack on remote nodes, the ohasd (Oracle High Availability Services Daemon) must be running on all managed nodes. (i.e using crsctl start cluster -n , )
Then if you try use crsctl start cluster -n node1,node2 and your local node is node1 and on node1 or node2 OHASD not running this command will fails.

--ocrcheck, ocrdump, ocrconfig
2) ocrcheck
10g(10.2.0.5):

[oracle@oradb27 ~]$ ocrcheck
Status of Oracle Cluster Registry is as follows :
         Version                  :          2
         Total space (kbytes)     :     130792
         Used space (kbytes)      :       3840
         Available space (kbytes) :     126952
         ID                       : 1298978498
         Device/File Name         : /dev/raw/raw1
                                    Device/File integrity check succeeded
         Device/File Name         : /dev/raw/raw2
                                    Device/File integrity check succeeded

         Cluster registry integrity check succeeded

11g(11.2.0.4):

--grid
[grid@oradb23 ~]$ ocrcheck
Status of Oracle Cluster Registry is as follows :
         Version                  :          3
         Total space (kbytes)     :     262120
         Used space (kbytes)      :       3100
         Available space (kbytes) :     259020
         ID                       : 1687103331
         Device/File Name         :       +OCR
                                    Device/File integrity check succeeded

                                    Device/File not configured

                                    Device/File not configured

                                    Device/File not configured

                                    Device/File not configured

         Cluster registry integrity check succeeded

         Logical corruption check bypassed due to non-privileged user

--root 
[root@oradb23 ~]# /u01/app/11.2.0/grid/bin/ocrcheck
Status of Oracle Cluster Registry is as follows :
         Version                  :          3
         Total space (kbytes)     :     262120
         Used space (kbytes)      :       3100
         Available space (kbytes) :     259020
         ID                       : 1687103331
         Device/File Name         :       +OCR
                                    Device/File integrity check succeeded

                                    Device/File not configured

                                    Device/File not configured

                                    Device/File not configured

                                    Device/File not configured

         Cluster registry integrity check succeeded

         Logical corruption check succeeded

3) ocrdump

10g(10.2.0.5):

[oracle@oradb27 ~]$ 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.

11g(11.2.0.4)

[grid@oradb23 ~]$ ocrdump -h
Name:
        ocrdump - Dump contents of Oracle Cluster/Local Registry to a file.

Synopsis:
        ocrdump [-local] [<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 -local -stdout -xml
        writes local registry contents to stdout in xml format

        prompt> ocrdump -backupfile /oracle/CRSHOME/backup.ocr -stdout -xml
        writes registry contents in the backup file 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.
        Use option '-local' to indicate that the operation is to be performed on the Oracle Local Registry.

4) ocrconfig

10g(10.2.0.5):

[oracle@oradb27 ~]$ ocrconfig
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.

11g(11.2.0.4):

[oracle@oradb27 ~]$ ocrconfig
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.

5) private IP 修改(注意:10g 和 11g操作不一樣)
RAC后期變更,綁定網卡時:
11g 需要先oifcfg setif -global 新網卡名稱/subnet:cluster_interconnect
./oifcfg setif -global bond1/10.10.10.0:cluster_interconnect
而10g 可以在變更后改。

6) 11.2.0.4 haip
res ora.cluster_interconnect.haip
如何禁用HAIP?
如何查看當前HAIP狀態?

4.應用層

**1) 查看配置:** srvctl config

eg: srvctl config database -d xxx -a
10g(10.2.0.5):

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl config database -d jyrac -a
oradb27 jyrac1 /u01/app/oracle/product/10.2.0.5/dbhome_1
oradb28 jyrac2 /u01/app/oracle/product/10.2.0.5/dbhome_1
DB_UNIQUE_NAME: jyrac
DB_NAME: null
ORACLE_HOME: /u01/app/oracle/product/10.2.0.5/dbhome_1
SPFILE: null
DOMAIN: null
DB_ROLE: null
START_OPTIONS: null
POLICY:  AUTOMATIC
ENABLE FLAG: DB ENABLED

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl config -h
Usage (for backward compatibility): srvctl config
Usage (for backward compatibility): srvctl config -p <dbname> -n <node>
Usage (for backward compatibility): srvctl config -V

11g(11.2.0.4):

[oracle@oradb23 ~]$ srvctl config database -d jyzhao -a
數據庫唯一名稱: jyzhao
數據庫名: 
Oracle 主目錄: /u01/app/oracle/product/11.2.0/dbhome_1
Oracle 用戶: oracle
Spfile: 
域: 
啟動選項: open
停止選項: immediate
數據庫角色: PRIMARY
管理策略: AUTOMATIC
服務器池: jyzhao
數據庫實例: jyzhao1,jyzhao2
磁盤組: DATA,FRA
裝載點路徑: 
服務: 
類型: RAC
數據庫已啟用
數據庫是管理員管理的

[oracle@oradb23 ~]$ srvctl config -h

SRVCTL config 命令顯示存儲在 OCR 中的對象配置。

用法: srvctl config database [-d <db_unique_name> [-a] ] [-v]
用法: srvctl config service -d <db_unique_name> [-s <service_name>] [-v]
用法: srvctl config nodeapps [-a] [-g] [-s]
用法: srvctl config vip { -n <node_name> | -i <vip_name> }
用法: srvctl config network [-k <network_number>]
用法: srvctl config asm [-a]
用法: srvctl config listener [-l <lsnr_name>] [-a]
用法: srvctl config scan [-i <ordinal_number>]
用法: srvctl config scan_listener [-i <ordinal_number>]
用法: srvctl config srvpool [-g <pool_name>]
用法: srvctl config oc4j
用法: srvctl config filesystem -d <volume_device>
用法: srvctl config gns [-a] [-d] [-k] [-m] [-n <node_name>] [-p] [-s] [-V] [-q <name>] [-l] [-v]
用法: srvctl config cvu
有關各個命令和對象的詳細幫助, 請使用:
  srvctl <command> <object> -h
Usage (for backward compatibility): srvctl config
Usage (for backward compatibility): srvctl config -p <dbname> -n <node>
Usage (for backward compatibility): srvctl config -V

2)添加資源:
srvctl add

10g(10.2.0.5):

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl add
Usage: srvctl <command> <object> [<options>]
    command: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config
    objects: database|instance|service|nodeapps|asm|listener
For detailed help on each command and object and its options use:
    srvctl <command> <object> -h

11g(11.2.0.4):

[oracle@oradb23 ~]$ srvctl add -h

SRVCTL add 命令將配置和 Oracle Clusterware 應用程序添加到集群數據庫, 指定實例, 指定服務或指定節點的 OCR。

用法: srvctl add database -d <db_unique_name> -o <oracle_home> [-c {RACONENODE | RAC | SINGLE} [-e <server_list>] [-i <inst_name>] [-w <timeout>]] [-m <domain_name>] [-p <spfile>] [-r {PRIMARY | PHYSICAL_STANDBY | LOGICAL_STANDBY | SNAPSHOT_STANDBY}] [-s <start_options>] [-t <stop_options>] [-n <db_name>] [-y {AUTOMATIC | MANUAL | NORESTART}] [-g \"<serverpool_list>\"] [-x <node_name>] [-a \"<diskgroup_list>\"] [-j \"<acfs_path_list>\"]
用法: srvctl add instance -d <db_unique_name> -i <inst_name> -n <node_name> [-f]
用法: srvctl add service -d <db_unique_name> -s <service_name> {-r "<preferred_list>" [-a "<available_list>"] [-P {BASIC | NONE | PRECONNECT}] | -g <pool_name> [-c {UNIFORM | SINGLETON}] } [-k   <net_num>] [-l [PRIMARY][,PHYSICAL_STANDBY][,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]] [-y {AUTOMATIC | MANUAL}] [-q {TRUE|FALSE}] [-x {TRUE|FALSE}] [-j {SHORT|LONG}] [-B {NONE|SERVICE_TIME|THROUGHPUT}] [-e {NONE|SESSION|SELECT}] [-m {NONE|BASIC}] [-z <failover_retries>] [-w <failover_delay>] [-t <edition>] [-f]
用法: srvctl add service -d <db_unique_name> -s <service_name> -u {-r "<new_pref_inst>" | -a "<new_avail_inst>"} [-f]
用法: srvctl add nodeapps { { -n <node_name> -A <name|ip>/<netmask>/[if1[|if2...]] } | { -S <subnet>/<netmask>/[if1[|if2...]] } } [-e <em-port>] [-l <ons-local-port>]  [-r <ons-remote-port>] [-t <host>[:<port>][,<host>[:<port>]...]] [-v]
用法: srvctl add vip -n <node_name> -k <network_number> -A <name|ip>/<netmask>/[if1[|if2...]] [-v]
用法: srvctl add network [-k <net_num>] -S <subnet>/<netmask>/[if1[|if2...]] [-w <network_type>] [-v]
用法: srvctl add asm [-l <lsnr_name>]
用法: srvctl add listener [-l <lsnr_name>] [-s] [-p "[TCP:]<port>[, ...][/IPC:<key>][/NMP:<pipe_name>][/TCPS:<s_port>] [/SDP:<port>]"] [-o <oracle_home>] [-k <net_num>]
用法: srvctl add scan -n <scan_name> [-k <network_number>] [-S <subnet>/<netmask>[/if1[|if2|...]]]
用法: srvctl add scan_listener [-l <lsnr_name_prefix>] [-s] [-p [TCP:]<port>[/IPC:<key>][/NMP:<pipe_name>][/TCPS:<s_port>] [/SDP:<port>]] 
用法: srvctl add srvpool -g <pool_name> [-l <min>] [-u <max>] [-i <importance>] [-n "<server_list>"] [-f]
用法: srvctl add oc4j [-v]
用法: srvctl add filesystem -d <volume_device> -v <volume_name> -g <dg_name> [-m <mountpoint_path>] [-u <user>]
用法: srvctl add gns -d <domain> -i <vip_name|ip> [-v]
用法: srvctl add cvu [-t <check_interval_in_minutes>]
有關各個命令和對象的詳細幫助, 請使用:
  srvctl <command> <object> -h

3)啟用/禁用資源自動啟動
srvctl enable/disable

10g(10.2.0.5):

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl enable
Usage: srvctl <command> <object> [<options>]
    command: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config
    objects: database|instance|service|nodeapps|asm|listener
For detailed help on each command and object and its options use:
    srvctl <command> <object> -h

11g(11.2.0.4):

[oracle@oradb23 ~]$ srvctl enable
用法: srvctl <command> <object> [<options>]
    命令: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config|convert|upgrade
    對象: database|instance|service|nodeapps|vip|network|asm|diskgroup|listener|srvpool|server|scan|scan_listener|oc4j|home|filesystem|gns|cvu
有關各個命令和對象的詳細幫助, 請使用:
  srvctl <command> -h 或
  srvctl <command> <object> -h

4)刪除資源:
srvctl remove
使用remove命令刪除的只是對象在OCR中的定義信息,對象本身不會被刪除,之后還可以通過add命令重新添加到OCR中。

10g(10.2.0.5):

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl remove
Usage: srvctl <command> <object> [<options>]
    command: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config
    objects: database|instance|service|nodeapps|asm|listener
For detailed help on each command and object and its options use:
    srvctl <command> <object> -h

11g(11.2.0.4):

[oracle@oradb23 ~]$ srvctl remove
用法: srvctl <command> <object> [<options>]
    命令: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config|convert|upgrade
    對象: database|instance|service|nodeapps|vip|network|asm|diskgroup|listener|srvpool|server|scan|scan_listener|oc4j|home|filesystem|gns|cvu
有關各個命令和對象的詳細幫助, 請使用:
  srvctl <command> -h 或
  srvctl <command> <object> -h

5)啟動/關閉資源:
srvctl start
srvctl stop

10g(10.2.0.5):

[oracle@oradb27 ~]$ /u01/app/oracle/product/10.2.0.5/crshome_1/bin/srvctl start
Usage: srvctl <command> <object> [<options>]
    command: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config
    objects: database|instance|service|nodeapps|asm|listener
For detailed help on each command and object and its options use:
    srvctl <command> <object> -h

11g(11.2.0.4):

[oracle@oradb23 ~]$ srvctl start
用法: srvctl <command> <object> [<options>]
    命令: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config|convert|upgrade
    對象: database|instance|service|nodeapps|vip|network|asm|diskgroup|listener|srvpool|server|scan|scan_listener|oc4j|home|filesystem|gns|cvu
有關各個命令和對象的詳細幫助, 請使用:
  srvctl <command> -h 或
  srvctl <command> <object> -h

6) 跟蹤srvctl
export SRVM_TRACE=true
再次執行srvctl相關命令,會顯示出跟蹤信息。

7) local_listener
在11.2.0.4版本的默認設置為本地vip的地址,在10.2.0.5默認沒有配置local_listener。但我們可以手工設置。

LOCAL_LISTENER specifies a network name that resolves to an address or address list of Oracle Net local listeners (that is, listeners that are running on the same machine as this instance). The address or address list is specified in the TNSNAMES.ORA file or other address repository as configured for your system.

10g(10.2.0.5):

SQL> show parameter listener

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
local_listener                       string
remote_listener                      string      LISTENERS_JYRAC

--設置local_listener參數(對應ORA-12545錯誤):
alter system set local_listener='(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.67)(PORT=1521))' sid='jyrac1';
alter system set local_listener='(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.68)(PORT=1521))' sid='jyrac2';

11g(11.2.0.4):

SQL> show parameter listener

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
listener_networks                    string
local_listener                       string       (ADDRESS=(PROTOCOL=TCP)(HOST=
                                                 192.168.1.53)(PORT=1521))
remote_listener                      string      oradb-scan:1521

Reference

- 張曉明. 大話Oracle RAC[M]. 人民郵電出版社, 2011. - 張曉明. 大話Oracle Grid[M]. 人民郵電出版社, 2014.


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM