`

重新配置与卸载11gR2 Grid Infrastructure

 
阅读更多

概述
Oracle 11g R2 Grid Infrastructure 的安装与配置较之前的版本提供了更多的灵活性。在Grid Infrastructure安装完毕前执行root.sh经常容易出现错误,并且需要修复该错误才能得以继续。
在这个版本中我们可以直接通过执行脚本rootcrs.pl来重新配置Grid Infrastructure而无需先卸载Grid Infrastructure,然后修复故障后进行再次安装。下面描述了rootcrs.pl的用法以及使用deinstall彻底卸载Grid Infrastructure。
rootcrs.pl命令介绍
#命令位置:$GRID_HOME/crs/install
#命令说明:
#  该命令主要是用于对crs进行维护与管理,包括patch,upgrade,downgrade,deconfig等等
#  perldoc rootcrs.pl执行这个命令获得完整的介绍
[root@linux1 install]# ./rootcrs.pl -h
Unknown option: h
Usage:
      rootcrs.pl [-verbose] [-upgrade | -patch] [-hahome <directory>]
                 [-paramfile <parameter-file>]
                 [-deconfig | -downgrade] [-force] [-lastnode]
                 [-downgrade] [-oldcrshome <old crshome path>] [-version <old crs version>]
                 [-unlock [-crshome <path to crs home>]]
      Options:
       -verbose    Run this script in verbose mode
       -upgrade    Oracle HA is being upgraded from previous version
       -patch      Oracle HA is being upgraded to a patch version
       -hahome     Complete path of Oracle Clusterware home
       -paramfile  Complete path of file specifying HA parameter values
       -lastnode   Force the node this is executing on to be considered the
                   last node of the install and perform actions associated
                   with configurig the last node
       -downgrade  Downgrade the clusterware
       -version    For use with downgrade; special handling is required if
                   downgrading to 9i. This is the old crs version in the format
                   A.B.C.D.E (e.g 11.1.0.6.0).
       -deconfig   Remove Oracle Clusterware to allow it to be uninstalled or reinstalled.
       -force      Force the executon of steps in delete that cannot be verified
                   to be safe
       -unlock     Unlock CRS home
       -crshome    Complete path of crs home. Use with unlock option.
       -oldcrshome For use with downgrade. Complete path of the old crs home.
      If neither -upgrade nor -patch is supplied, a new install is performed
      To see the full manpage for this program, execute:
        perldoc rootcrs.pl
#对于执行root.sh失败时,我们可以通过该命令以-deconfig 参数来清除crs的配置信息,然后根据log修复故障或使用patch之后再重新执行root.sh
#对于该命令的patch,upgrade,downgrade用法再此不作详细介绍
重新配置Grid Infrastructure及ASM
#重新配置Grid Infrastructure并不会移除已经复制的二进制文件,仅仅是回复到配置crs之前的状态,下面是其步骤
a、使用root用户登录,并执行下面的命令(所有节点,但最后一个节点除外)
  # perl $GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force
b、同样使用root用户在最后一个节点执行下面的命令。该命令将清空ocr 配置和voting disk
  # perl $GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force -lastnode
c、如果使用了ASM磁盘,继续下面的操作以使得ASM重新作为候选磁盘(清空所有的ASM磁盘组)
  # dd if=/dev/zero of=/dev/sdb1 bs=1024 count=100
  # /etc/init.d/oracleasm deletedisk DATA /dev/sdb1
  # /etc/init.d/oracleasm createdisk DATA /dev/sdb1
彻底删除Grid Infrastructure
#11g R2 Grid Infrastructure也提供了彻底卸载的功能,deinstall该命令取代了使用OUI方式来清除clusterware以及ASM,回复到安装grid之前的环境。
#该命令将停止集群,移除二进制文件及其相关的所有配置信息。
#命令位置:$GRID_HOME/deinstall
#下面是该命令操作的具体事例,操作期间,需要提供一些交互信息,以及在新的session以root身份清除一些/tmp下的文件
[root@linux1 bin]# ./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
[root@linux1 bin]# cd ../deinstall/
[root@linux1 deinstall]# pwd
/u01/app/11.2.0/grid/deinstall
[root@linux1 deinstall]# ./deinstall
You must not be logged in as root to run ./deinstall.
Log in as Oracle user and rerun ./deinstall.
[root@linux1 deinstall]# su grid
[grid@linux1 deinstall]$ ./deinstall
Checking for required files and bootstrapping ...
Please wait ...
Location of logs /tmp/deinstall2013-07-16_05-54-03-PM/logs/
############ ORACLE DEINSTALL & DECONFIG TOOL START ############


######################## CHECK OPERATION START ########################
Install check configuration START
Checking for existence of the Oracle home location /u01/app/11.2.0/grid
Oracle Home type selected for de-install is: CRS
Oracle Base selected for de-install is: /u01/app/grid
Checking for existence of central inventory location /u01/app/oraInventory
Checking for existence of the Oracle Grid Infrastructure home /u01/app/11.2.0/grid
The following nodes are part of this cluster: linux1,linux2
Install check configuration END
Traces log file: /tmp/deinstall2013-07-16_05-54-03-PM/logs//crsdc.log
Network Configuration check config START
Network de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/netdc_check207506844451155733.log
Network Configuration check config END
Asm Check Configuration START
ASM de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/asmcadc_check2698133635629979531.log
ASM configuration was not detected in this Oracle home. Was ASM configured in this Oracle home (y|n) [n]: y
Automatic Storage Management (ASM) instance is detected in this Oracle home /u01/app/11.2.0/grid.
ASM Diagnostic Destination : /u01/app/grid
ASM Diskgroups : +DATA
Diskgroups will be dropped
De-configuring ASM will drop all the diskgroups and it's contents at cleanup time. This will affect all of the databases and ACFS
  that use this ASM instance(s).
 If you want to retain the existing diskgroups or if any of the information detected is incorrect, you can modify by entering 'y'.
 Do you  want to modify above information (y|n) [n]:
######################### CHECK OPERATION END #########################


####################### CHECK OPERATION SUMMARY #######################
Oracle Grid Infrastructure Home is: /u01/app/11.2.0/grid
The cluster node(s) on which the Oracle home exists are: (Please input nodes seperated by ",", eg: node1,node2,...)linux1,linux2
Oracle Home selected for de-install is: /u01/app/11.2.0/grid
Inventory Location where the Oracle home registered is: /u01/app/oraInventory
ASM instance will be de-configured from this Oracle home
Do you want to continue (y - yes, n - no)? [n]: y
A log of this session will be written to: '/tmp/deinstall2013-07-16_05-54-03-PM/logs/deinstall_deconfig2013-07-16_05-54-37-PM.out'
Any error messages from this session will be written to: '/tmp/deinstall2013-07-16_05-54-03-PM/logs/deinstall_deconfig2013-07-16_05-54-37-PM.err'
######################## CLEAN OPERATION START ########################


ASM de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/asmcadc_clean3319637107726750003.log
ASM Clean Configuration START
ASM Clean Configuration END
Network Configuration clean config START
Network de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/netdc_clean9055263637610505743.log
De-configuring Naming Methods configuration file on all nodes...
Naming Methods configuration file de-configured successfully.
De-configuring Local Net Service Names configuration file on all nodes...
Local Net Service Names configuration file de-configured successfully.
De-configuring Directory Usage configuration file on all nodes...
Directory Usage configuration file de-configured successfully.
De-configuring backup files on all nodes...
Backup files de-configured successfully.
The network configuration has been cleaned up successfully.
Network Configuration clean config END
---------------------------------------->


Run the following command as the root user or the administrator on node "linux2".
/tmp/deinstall2013-07-16_05-54-03-PM/perl/bin/perl -I/tmp/deinstall2013-07-16_05-54-03-PM/perl/lib
-I/tmp/deinstall2013-07-16_05-54-03-PM/crs/install /tmp/deinstall2013-07-16_05-54-03-PM/crs/install/rootcrs.pl -force
-delete -paramfile /tmp/deinstall2013-07-16_05-54-03-PM/response/deinstall_Ora11g_gridinfrahome1.rsp
Run the following command as the root user or the administrator on node "linux1".
/tmp/deinstall2013-07-16_05-54-03-PM/perl/bin/perl -I/tmp/deinstall2013-07-16_05-54-03-PM/perl/lib
-I/tmp/deinstall2013-07-16_05-54-03-PM/crs/install /tmp/deinstall2013-07-16_05-54-03-PM/crs/install/rootcrs.pl -force
-delete -paramfile /tmp/deinstall2013-07-16_05-54-03-PM/response/deinstall_Ora11g_gridinfrahome1.rsp -lastnode
Press Enter after you finish running the above commands
<----------------------------------------
Oracle Universal Installer clean START
Detach Oracle home '/u01/app/11.2.0/grid' from the central inventory on the local node : Done
Delete directory '/u01/app/11.2.0/grid' on the local node : Done
Delete directory '/u01/app/oraInventory' on the local node : Done
Delete directory '/u01/app/grid' on the local node : Done
Detach Oracle home '/u01/app/11.2.0/grid' from the central inventory on the remote nodes 'linux2' : Done
Delete directory '/u01/app/11.2.0/grid' on the remote nodes 'linux2' : Done
Delete directory '/u01/app/oraInventory' on the remote nodes 'linux2' : Done
Delete directory '/u01/app/grid' on the remote nodes 'linux2' : Done
Oracle Universal Installer cleanup was successful.
Oracle Universal Installer clean END
Oracle install clean START
Clean install operation removing temporary directory '/tmp/install' on node 'linux1'
Clean install operation removing temporary directory '/tmp/install' on node 'linux2'
Oracle install clean END
######################### CLEAN OPERATION END #########################


####################### CLEAN OPERATION SUMMARY #######################
ASM instance was de-configured successfully from the Oracle home
Oracle Clusterware is stopped and successfully de-configured on node "linux2"
Oracle Clusterware is stopped and successfully de-configured on node "linux1"
Oracle Clusterware is stopped and de-configured successfully.
Successfully detached Oracle home '/u01/app/11.2.0/grid' from the central inventory on the local node.
Successfully deleted directory '/u01/app/11.2.0/grid' on the local node.
Successfully deleted directory '/u01/app/oraInventory' on the local node.
Successfully deleted directory '/u01/app/grid' on the local node.
Successfully detached Oracle home '/u01/app/11.2.0/grid' from the central inventory on the remote nodes 'linux2'.
Successfully deleted directory '/u01/app/11.2.0/grid' on the remote nodes 'linux2'.
Successfully deleted directory '/u01/app/oraInventory' on the remote nodes 'linux2'.
Successfully deleted directory '/u01/app/grid' on the remote nodes 'linux2'.
Oracle Universal Installer cleanup was successful.
Run 'rm -rf /etc/oraInst.loc' as root on node(s) 'linux1,linux2' at the end of the session.
Oracle install successfully cleaned up the temporary directories.
#######################################################################


############# ORACLE DEINSTALL & DECONFIG TOOL END #############

参考至:http://www.2cto.com/database/201307/228731.html

如有错误,欢迎指正

邮箱:czmcj@163.com

分享到:
评论

相关推荐

    RAC坏节点重建与卸载

    Oracle RAC(Real Application Clusters)坏节点重建与卸载是一个复杂的过程,涉及到Oracle Grid Infrastructure的多个关键组成部分,包括OCR(Oracle Cluster Registry)和集群资源管理。文档2016852.1详述了当遇到...

    构建最高可用Oracle数据库系统 Oracle 11gR2 RAC管理、维护与性能优化

    7.1.2 Grid Infrastructure重新配置 7.1.3 Restart数据库的管理 7.2 RAC One Node数据库 7.2.1安装RAC One Node数据库 7.2.2 RAC One Node的Failover特性 7.2.3 RAC One Node数据库在线迁移 7.3 RAC One Node...

    oracle 11gr2

    Grid Infrastructure是Oracle 11gR2中的关键组件之一,用于管理和自动化数据库集群,其主要特点包括: - **自动存储管理(ASM)**:提供高性能、高可用性的存储层,支持多实例共享存储,简化了存储管理。 - **数据库...

    redhat6.5-oracle11gR2-grid搭建RAC(个人整理-yjc)

    接下来可以继续进行Oracle Grid Infrastructure和数据库实例的安装与配置工作。这些准备工作包括但不限于安装Oracle Grid Infrastructure软件、配置集群网络、创建ASM磁盘组、安装数据库实例以及最后的集群验证等...

    11GR2 REHL 5.3 INSTALL

    2. **ACFS (Oracle Cluster File System)**:Grid Infrastructure还会为您安装ACFS,这是一种集群文件系统,允许您在RAC集群的所有节点之间共享数据库的ORACLE_HOME。但是,值得注意的是,ACFS不允许您在不同节点间...

    Oracle 11gR2 RAC删除节点实战 案例

    Oracle 11gR2 RAC(Real Application Clusters)是一种高可用性和容错性的数据库技术,它允许多个实例同时访问同一个物理数据库,确保在单个节点故障时,整个数据库系统仍然能够继续运行。在本案例中,我们将探讨...

    rpms_for_oracle11gR2

    2. **安装Grid Infrastructure**:首先安装Grid Infrastructure,配置集群和ASM环境。 3. **安装数据库软件**:使用RPM软件包安装Oracle Database Server,选择相应的安装类型,如Enterprise Edition或Standard ...

    Oracle11gR2forLinux安装 (1).doc

    4. **初始化与配置** - 使用DBCA(Database Configuration Assistant)进行数据库的进一步配置,如创建表空间、用户、角色等。 - 配置监听器(listener.ora)和网络服务名(tnsnames.ora)。 5. **安全性设置** ...

    linux 6.0下oracle 11gR2所需全部rpm包

    例如,`grid.infra`、`oracle-rac-server`、`oracle-db-server`等,它们分别对应于Oracle Grid Infrastructure、Oracle RAC(Real Application Clusters)和Oracle数据库服务器。 1. **Oracle Grid Infrastructure*...

    不用ASMLIB创建11gr2 ASM实例

    这可能涉及执行`GRID_HOME/crs/install/rootcrs.pl -deconfig -force`以卸载CRS,然后重新运行`GRID_HOME/grid/root.sh`,按照提示操作,最后使用`crsctl start resource -all`启动所有资源。 在配置过程中,可能会...

    kmod-oracle 所有redhat版本全部支持(6.1-6.8) rpm以及安装ASM的所需全部包

    1. 安装必要的RPM包:除了kmod-oracle,可能还包括oracle-rdbms-server-11gR2-asm、oracle-rdbms-server-11gR2-asm-tools等,这些包提供了ASM的内核模块和管理工具。 2. 配置yum源:确保能从Oracle的yum仓库获取到...

    compat-libstdc++-33-3.2.3-72.el7.x86_64.zip

    值得注意的是,Oracle数据库的安装通常需要root权限,并且需要遵循一定的顺序安装相关的组件和服务,如Oracle Database Server、Oracle Client、Oracle Grid Infrastructure等。 在实际操作中,还需要关注系统兼容...

    rhel5.1+oracle10g+rac所需rpm

    6. **Oracle Database安装**:接着,安装Oracle 10g数据库服务器,这包括多个RPM包,如`oracle-database-server-10gR2`,同时配置参数文件、网络服务名等。 7. **创建和配置RAC实例**:使用DBCA创建多个数据库实例...

    Linux安装Oracle必须rpm包

    3. **Oracle Preinstall RPM**:`oracle-xe-universal-11gR2-1.0-1.x86_64.rpm`或者针对完整版Oracle的`oracle-rdbms-server-11gR2-preinstall`,这个包会设置必要的环境变量,解决依赖关系,并为Oracle创建必要的...

Global site tag (gtag.js) - Google Analytics