search
HomeDatabaseMysql Tutorial重新配置或卸载 11gR2 Grid Infrastructure

Oracle 11g R2 Grid Infrastructure 的安装与配置较之前的版本提供了更多的灵活性。在Grid Infrastructure安装完毕前执行root.sh经常容易出现错误,并且需要修复该错误才能得以继续。在这个版本中我们可以直接通过执行脚本rootcrs.pl来重新配置Grid Infrastr

      Oracle 11g R2 Grid Infrastructure 的安装与配置较之前的版本提供了更多的灵活性。在Grid Infrastructure安装完毕前执行root.sh经常容易出现错误,并且需要修复该错误才能得以继续。在这个版本中我们可以直接通过执行脚本rootcrs.pl来重新配置Grid Infrastructure而无需先卸载Grid Infrastructure,然后修复故障后进行再次安装。下面描述了rootcrs.pl的用法以及使用deinstall彻底卸载Grid Infrastructure。

 

1、rootcrs.pl命令介绍

[python] view plaincopyprint?

  1. #命令位置:$GRID_HOME/crs/install  
  2. #命令说明:  
  3. #  该命令主要是用于对crs进行维护与管理,包括patch,upgrade,downgrade,deconfig等等  
  4. #  perldoc rootcrs.pl执行这个命令获得完整的介绍  
  5. [root@linux1 install]# ./rootcrs.pl -h  
  6. Unknown option: h  
  7. Usage:  
  8.       rootcrs.pl [-verbose] [-upgrade | -patch] [-hahome ]  
  9.                  [-paramfile ]   
  10.                  [-deconfig | -downgrade] [-force] [-lastnode]  
  11.                  [-downgrade] [-oldcrshome ] [-version ]    
  12.                  [-unlock [-crshome ]]  
  13.   
  14.       Options:  
  15.        -verbose    Run this script in verbose mode  
  16.        -upgrade    Oracle HA is being upgraded from previous version  
  17.        -patch      Oracle HA is being upgraded to a patch version  
  18.        -hahome     Complete path of Oracle Clusterware home  
  19.        -paramfile  Complete path of file specifying HA parameter values  
  20.        -lastnode   Force the node this is executing on to be considered the  
  21.                    last node of the install and perform actions associated  
  22.                    with configurig the last node  
  23.        -downgrade  Downgrade the clusterware  
  24.        -version    For use with downgrade; special handling is required if  
  25.                    downgrading to 9i. This is the old crs version in the format  
  26.                    A.B.C.D.E (e.g 11.1.0.6.0).  
  27.        -deconfig   Remove Oracle Clusterware to allow it to be uninstalled or reinstalled.  
  28.        -force      Force the executon of steps in delete that cannot be verified   
  29.                    to be safe  
  30.        -unlock     Unlock CRS home   
  31.        -crshome    Complete path of crs home. Use with unlock option.  
  32.        -oldcrshome For use with downgrade. Complete path of the old crs home.  
  33.   
  34.       If neither -upgrade nor -patch is supplied, a new install is performed  
  35.   
  36.       To see the full manpage for this program, execute:  
  37.         perldoc rootcrs.pl       

#对于执行root.sh失败时,我们可以通过该命令以-deconfig 参数来清除crs的配置信息,然后根据log修复故障或使用patch之后再重新执行root.sh
#对于该命令的patch,upgrade,downgrade用法再此不作详细介绍

 

2、重新配置Grid Infrastructure及ASM

[python] view plaincopyprint?

  1. #重新配置Grid Infrastructure并不会移除已经复制的二进制文件,仅仅是回复到配置crs之前的状态,下面是其步骤  
  2.   
  3. a、使用root用户登录,并执行下面的命令(所有节点,但最后一个节点除外)  
  4.   # perl $GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force  
  5.     
  6. b、同样使用root用户在最后一个节点执行下面的命令。该命令将清空ocr 配置和voting disk    
  7.   # perl $GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force -lastnode  
  8.   
  9. c、如果使用了ASM磁盘,继续下面的操作以使得ASM重新作为候选磁盘(清空所有的ASM磁盘组)  
  10.   # dd if=/dev/zero of=/dev/sdb1 bs=1024 count=100  
  11.   # /etc/init.d/oracleasm deletedisk DATA /dev/sdb1  
  12.   # /etc/init.d/oracleasm createdisk DATA /dev/sdb1  
  13.   
  14. #Author : Robinson  
  15. #Blog   : http://blog.csdn.net/robinson_0612  

3、彻底删除Grid Infrastructure

[python] view plaincopyprint?

  1. #11g R2 Grid Infrastructure也提供了彻底卸载的功能,deinstall该命令取代了使用OUI方式来清除clusterware以及ASM,回复到安装grid之前的环境。  
  2. #该命令将停止集群,移除二进制文件及其相关的所有配置信息。  
  3. #命令位置:$GRID_HOME/deinstall  
  4. #下面是该命令操作的具体事例,操作期间,需要提供一些交互信息,以及在新的session以root身份清除一些/tmp下的文件  
  5. [root@linux1 bin]# ./crsctl check crs  
  6. CRS-4638: Oracle High Availability Services is online  
  7. CRS-4537: Cluster Ready Services is online  
  8. CRS-4529: Cluster Synchronization Services is online  
  9. CRS-4533: Event Manager is online  
  10. [root@linux1 bin]# cd ../deinstall/  
  11. [root@linux1 deinstall]# pwd  
  12. /u01/app/11.2.0/grid/deinstall  
  13. [root@linux1 deinstall]# ./deinstall  
  14. You must not be logged in as root to run ./deinstall.  
  15. Log in as Oracle user and rerun ./deinstall.  
  16. [root@linux1 deinstall]# su grid  
  17. [grid@linux1 deinstall]$ ./deinstall  
  18. Checking for required files and bootstrapping ...  
  19. Please wait ...  
  20. Location of logs /tmp/deinstall2013-07-16_05-54-03-PM/logs/  
  21.   
  22. ############ ORACLE DEINSTALL & DECONFIG TOOL START ############  
  23.   
  24. ######################## CHECK OPERATION START ########################  
  25. Install check configuration START  
  26.   
  27. Checking for existence of the Oracle home location /u01/app/11.2.0/grid  
  28. Oracle Home type selected for de-install is: CRS  
  29. Oracle Base selected for de-install is: /u01/app/grid  
  30. Checking for existence of central inventory location /u01/app/oraInventory  
  31. Checking for existence of the Oracle Grid Infrastructure home /u01/app/11.2.0/grid  
  32. The following nodes are part of this cluster: linux1,linux2  
  33.   
  34. Install check configuration END  
  35.   
  36. Traces log file: /tmp/deinstall2013-07-16_05-54-03-PM/logs//crsdc.log  
  37.   
  38. Network Configuration check config START  
  39.   
  40. Network de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/netdc_check207506844451155733.log  
  41.   
  42. Network Configuration check config END  
  43.   
  44. Asm Check Configuration START  
  45.   
  46. ASM de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/asmcadc_check2698133635629979531.log  
  47.   
  48. ASM configuration was not detected in this Oracle home. Was ASM configured in this Oracle home (y|n) [n]: y  
  49. Automatic Storage Management (ASM) instance is detected in this Oracle home /u01/app/11.2.0/grid.  
  50. ASM Diagnostic Destination : /u01/app/grid  
  51. ASM Diskgroups : +DATA  
  52. Diskgroups will be dropped  
  53. De-configuring ASM will drop all the diskgroups and it's contents at cleanup time. This will affect all of the databases and ACFS   
  54.   that use this ASM instance(s).  
  55.  If you want to retain the existing diskgroups or if any of the information detected is incorrect, you can modify by entering 'y'.   
  56.  Do you  want to modify above information (y|n) [n]:   
  57.   
  58. ######################### CHECK OPERATION END #########################  
  59.   
  60. ####################### CHECK OPERATION SUMMARY #######################  
  61. Oracle Grid Infrastructure Home is: /u01/app/11.2.0/grid  
  62. The cluster node(s) on which the Oracle home exists are: (Please input nodes seperated by ",", eg: node1,node2,...)linux1,linux2  
  63. Oracle Home selected for de-install is: /u01/app/11.2.0/grid  
  64. Inventory Location where the Oracle home registered is: /u01/app/oraInventory  
  65. ASM instance will be de-configured from this Oracle home  
  66. Do you want to continue (y - yes, n - no)? [n]: y  
  67. 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'  
  68. 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'  
  69.   
  70. ######################## CLEAN OPERATION START ########################  
  71. ASM de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/asmcadc_clean3319637107726750003.log  
  72. ASM Clean Configuration START  
  73. ASM Clean Configuration END  
  74.   
  75. Network Configuration clean config START  
  76.   
  77. Network de-configuration trace file location: /tmp/deinstall2013-07-16_05-54-03-PM/logs/netdc_clean9055263637610505743.log  
  78.   
  79. De-configuring Naming Methods configuration file on all nodes...  
  80. Naming Methods configuration file de-configured successfully.  
  81.   
  82. De-configuring Local Net Service Names configuration file on all nodes...  
  83. Local Net Service Names configuration file de-configured successfully.  
  84.   
  85. De-configuring Directory Usage configuration file on all nodes...  
  86. Directory Usage configuration file de-configured successfully.  
  87.   
  88. De-configuring backup files on all nodes...  
  89. Backup files de-configured successfully.  
  90.   
  91. The network configuration has been cleaned up successfully.  
  92.   
  93. Network Configuration clean config END  
  94.   
  95. ---------------------------------------->  
  96.   
  97. Run the following command as the root user or the administrator on node "linux2".  
  98.   
  99. /tmp/deinstall2013-07-16_05-54-03-PM/perl/bin/perl -I/tmp/deinstall2013-07-16_05-54-03-PM/perl/lib   
  100. -I/tmp/deinstall2013-07-16_05-54-03-PM/crs/install /tmp/deinstall2013-07-16_05-54-03-PM/crs/install/rootcrs.pl -force    
  101. -delete -paramfile /tmp/deinstall2013-07-16_05-54-03-PM/response/deinstall_Ora11g_gridinfrahome1.rsp  
  102.   
  103. Run the following command as the root user or the administrator on node "linux1".  
  104.   
  105. /tmp/deinstall2013-07-16_05-54-03-PM/perl/bin/perl -I/tmp/deinstall2013-07-16_05-54-03-PM/perl/lib  
  106. -I/tmp/deinstall2013-07-16_05-54-03-PM/crs/install /tmp/deinstall2013-07-16_05-54-03-PM/crs/install/rootcrs.pl -force   
  107. -delete -paramfile /tmp/deinstall2013-07-16_05-54-03-PM/response/deinstall_Ora11g_gridinfrahome1.rsp -lastnode  
  108.   
  109. Press Enter after you finish running the above commands  
  110.   
  111.   
  112. Oracle Universal Installer clean START  
  113.   
  114. Detach Oracle home '/u01/app/11.2.0/grid' from the central inventory on the local node : Done  
  115.   
  116. Delete directory '/u01/app/11.2.0/grid' on the local node : Done  
  117.   
  118. Delete directory '/u01/app/oraInventory' on the local node : Done  
  119.   
  120. Delete directory '/u01/app/grid' on the local node : Done  
  121.   
  122. Detach Oracle home '/u01/app/11.2.0/grid' from the central inventory on the remote nodes 'linux2' : Done  
  123.   
  124. Delete directory '/u01/app/11.2.0/grid' on the remote nodes 'linux2' : Done  
  125.   
  126. Delete directory '/u01/app/oraInventory' on the remote nodes 'linux2' : Done  
  127.   
  128. Delete directory '/u01/app/grid' on the remote nodes 'linux2' : Done  
  129.   
  130. Oracle Universal Installer cleanup was successful.  
  131.   
  132. Oracle Universal Installer clean END  
  133.   
  134.   
  135. Oracle install clean START  
  136.   
  137. Clean install operation removing temporary directory '/tmp/install' on node 'linux1'  
  138. Clean install operation removing temporary directory '/tmp/install' on node 'linux2'  
  139.   
  140. Oracle install clean END  
  141.   
  142. ######################### CLEAN OPERATION END #########################  
  143.   
  144. ####################### CLEAN OPERATION SUMMARY #######################  
  145. ASM instance was de-configured successfully from the Oracle home  
  146. Oracle Clusterware is stopped and successfully de-configured on node "linux2"  
  147. Oracle Clusterware is stopped and successfully de-configured on node "linux1"  
  148. Oracle Clusterware is stopped and de-configured successfully.  
  149. Successfully detached Oracle home '/u01/app/11.2.0/grid' from the central inventory on the local node.  
  150. Successfully deleted directory '/u01/app/11.2.0/grid' on the local node.  
  151. Successfully deleted directory '/u01/app/oraInventory' on the local node.  
  152. Successfully deleted directory '/u01/app/grid' on the local node.  
  153. Successfully detached Oracle home '/u01/app/11.2.0/grid' from the central inventory on the remote nodes 'linux2'.  
  154. Successfully deleted directory '/u01/app/11.2.0/grid' on the remote nodes 'linux2'.  
  155. Successfully deleted directory '/u01/app/oraInventory' on the remote nodes 'linux2'.  
  156. Successfully deleted directory '/u01/app/grid' on the remote nodes 'linux2'.  
  157. Oracle Universal Installer cleanup was successful.  
  158.   
  159. Run 'rm -rf /etc/oraInst.loc' as root on node(s) 'linux1,linux2' at the end of the session.  
  160.   
  161. Oracle install successfully cleaned up the temporary directories.  
  162. #######################################################################  
  163.   
  164. ############# ORACLE DEINSTALL & DECONFIG TOOL END #############  

 

  重新配置或卸载 11gR2 Grid Infrastructure

更多参考

有关Oracle RAC请参考
     使用crs_setperm修改RAC资源的所有者及权限
     使用crs_profile管理RAC资源配置文件
     RAC 数据库的启动与关闭
     再说 Oracle RAC services
     Services in Oracle Database 10g
     Migrate datbase from single instance to Oracle RAC
     Oracle RAC 连接到指定实例
     Oracle RAC 负载均衡测试(结合服务器端与客户端)
     Oracle RAC 服务器端连接负载均衡(Load Balance)
     Oracle RAC 客户端连接负载均衡(Load Balance)
     ORACLE RAC 下非缺省端口监听配置(listener.ora tnsnames.ora)
     ORACLE RAC 监听配置 (listener.ora tnsnames.ora)
     配置 RAC 负载均衡与故障转移
     CRS-1006 , CRS-0215 故障一例 
     基于Linux (RHEL 5.5) 安装Oracle 10g RAC
     使用 runcluvfy 校验Oracle RAC安装环境

有关Oracle 网络配置相关基础以及概念性的问题请参考:
     配置非默认端口的动态服务注册
     配置sqlnet.ora限制IP访问Oracle
     Oracle 监听器日志配置与管理
     设置 Oracle 监听器密码(LISTENER)
     配置ORACLE 客户端连接到数据库

有关基于用户管理的备份和备份恢复的概念请参考
     Oracle 冷备份
     Oracle 热备份
     Oracle 备份恢复概念
     Oracle 实例恢复
     Oracle 基于用户管理恢复的处理
     SYSTEM 表空间管理及备份恢复
     SYSAUX表空间管理及恢复
     Oracle 基于备份控制文件的恢复(unsing backup controlfile)

有关RMAN的备份恢复与管理请参考
     RMAN 概述及其体系结构
     RMAN 配置、监控与管理
     RMAN 备份详解
     RMAN 还原与恢复
     RMAN catalog 的创建和使用
     基于catalog 创建RMAN存储脚本
     基于catalog 的RMAN 备份与恢复
     RMAN 备份路径困惑
     使用RMAN实现异机备份恢复(WIN平台)
     使用RMAN迁移文件系统数据库到ASM
     linux 下RMAN备份shell脚本
     使用RMAN迁移数据库到异机

有关ORACLE体系结构请参考
     Oracle 表空间与数据文件
     Oracle 密码文件
     Oracle 参数文件
     Oracle 联机重做日志文件(ONLINE LOG FILE)
     Oracle 控制文件(CONTROLFILE)
     Oracle 归档日志
     Oracle 回滚(ROLLBACK)和撤销(UNDO)
     Oracle 数据库实例启动关闭过程
     Oracle 10g SGA 的自动化管理
     Oracle 实例和Oracle数据库(Oracle体系结构) 


 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在Nginx配置Cookie安全策略如何在Nginx配置Cookie安全策略Jun 10, 2023 pm 12:54 PM

随着互联网的不断发展和普及,Web应用程序已成为人们日常生活中必不可少的一部分,这也决定了Web应用程序的安全问题非常重要。在Web应用程序中,Cookie被广泛使用来实现用户身份认证等功能,然而Cookie也存在着安全风险,因此在配置Nginx时,必须设定适当的Cookie安全策略,以保证Cookie的安全性。下面是一些在Nginx中配置Cookie安全策

使用CMake构建Linux内核的配置指南使用CMake构建Linux内核的配置指南Jul 06, 2023 pm 02:46 PM

使用CMake构建Linux内核的配置指南概述在Linux开发中,构建和配置内核是一个重要的环节。对于大多数人来说,使用Kconfig和Makefile是最常见的配置方式。然而,使用CMake来构建和配置Linux内核也是一个灵活且强大的选择。本文将介绍如何使用CMake来构建和配置Linux内核,并附上一些代码示例。安装CMake首先,我们需要安装CMak

MySQL连接池的最大连接数如何设置?MySQL连接池的最大连接数如何设置?Jun 30, 2023 pm 12:55 PM

如何配置MySQL连接池的最大连接数?MySQL是一个开源的关系型数据库管理系统,被广泛应用于各种领域的数据存储与管理。在使用MySQL时,我们常常需要使用连接池来管理数据库连接,以提高性能和资源利用率。连接池是一种维护和管理数据库连接的技术,它能够在需要时提供数据库连接,并在不需要时回收连接,从而减少了连接的重复创建和销毁。而连接池的最大连接数则是连接池所

使用GDB调试Linux内核的常用配置技巧使用GDB调试Linux内核的常用配置技巧Jul 05, 2023 pm 01:54 PM

使用GDB调试Linux内核的常用配置技巧引言:在Linux开发中,使用GDB调试内核是一项非常重要的技能。GDB是一款功能强大的调试工具,可以帮助开发者快速定位和解决内核中的bug。本文将介绍一些常用的GDB配置技巧,以及如何使用GDB调试Linux内核。一、配置GDB环境首先,我们需要在Linux系统上配置GDB的环境。请确保你的系统已经安装了GDB工具

Nginx错误页面配置,优雅处理网站故障Nginx错误页面配置,优雅处理网站故障Jul 04, 2023 pm 04:06 PM

Nginx错误页面配置,优雅处理网站故障在现代互联网时代,一个高度稳定和可靠的网站是任何企业或个人追求的目标。然而,由于各种原因,网站可能会经历故障或错误,这可能是由于网络问题、服务器问题或应用程序错误等。为了提供更好的用户体验和优雅地处理任何可能发生的错误,Nginx作为一个强大的Web服务器软件,不仅能够提供高性能的服务,还能够灵活地配置错误页面。在Ng

如何使用Linux进行虚拟网络配置如何使用Linux进行虚拟网络配置Jun 18, 2023 am 11:24 AM

随着云计算、大数据和物联网等技术的日益普及,虚拟化技术成为了当今IT领域的热门话题。虚拟化是通过将一台物理主机划分为多个独立的虚拟机,实现资源的共享和管理的方法。虚拟网络是虚拟化的其中一个重要组成部分,能够满足不同应用之间的网络隔离和互动需求。在本文中,我们将介绍如何使用Linux进行虚拟网络配置。一、Linux虚拟网络的概述在物理网络中,网卡是连接网络设备

如何通过宝塔面板进行UFW防火墙的配置如何通过宝塔面板进行UFW防火墙的配置Jun 21, 2023 am 09:08 AM

在Linux服务器上配置防火墙非常重要,它可以有效地保护服务器免受恶意攻击。在Ubuntu操作系统上,我们可以使用UFW防火墙来保护服务器的安全。在本文中,我们将介绍如何使用宝塔面板配置UFW防火墙。第一步:安装宝塔面板首先,我们需要在Ubuntu上安装宝塔面板。您可以在宝塔官网免费下载宝塔面板的安装包,然后在命令行中运行以下命令来安装宝塔面板:$wget

Intel TXT的安装和配置步骤Intel TXT的安装和配置步骤Jun 11, 2023 pm 06:49 PM

IntelTXT(TrustedExecutionTechnology,可信执行技术)是一种硬件帮助保护系统安全的技术。它通过使用硬件测量模块(TPM)来确保系统启动过程中的完整性,并且可以防止恶意软件攻击。在本文中,我们将讨论IntelTXT的安装和配置步骤,帮助你更好地保护你的系统安全。第一步:检查硬件要求安装IntelTXT前,需要先检查计算

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.